/*-------------------- Body --------------------*/
 html, body {
	 height: 100%;
	 background: linear-gradient(0, #202239, #8595ac);
}
 ::selection {
	 background: #cdd4de;
}
/*-------------------- Page --------------------*/
 .page {
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 width: 800px;
	 height: 600px;
	 z-index: 1;
	 font-family: Roboto, sans-serif;
	 background: #0d0c1e;
	 border-radius: 10px;
	 overflow: hidden;
	 box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
}
/*-------------------- Header --------------------*/
 header {
	 padding: 30px;
}
 header .logo {
	 margin: 0 auto;
	 text-align: center;
	 margin-bottom: -17px;
}
 header .logo svg {
	 width: 61px;
	 height: 14px;
}
 header nav {
	 cursor: pointer;
	 width: 18px;
	 height: 18px;
	 position: relative;
	 float: left;
}
 header nav::before {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 2px;
	 background: #565c73;
	 border-radius: 2px;
	 box-shadow: 0 5px 0 #565c73, 0 10px 0 #565c73;
}
 header .search {
	 float: right;
	 cursor: pointer;
}
 header .search svg {
	 width: 16px;
	 height: 16px;
}
/*-------------------- Content --------------------*/
 .content {
	 text-align: center;
	 padding-top: 118px;
	 color: #cdd4de;
}
 .content h1 {
	 font-weight: 900;
	 font-size: 165px;
	 line-height: 1;
	 margin-bottom: -10px;
	 opacity: 0.6;
}
 .content h2 {
	 font-weight: 700;
	 font-size: 34px;
	 margin-bottom: 6px;
	 opacity: 0.9;
}
 .content p {
	 font-weight: 300;
	 font-size: 14px;
	 opacity: 0.7;
	 margin-bottom: 140px;
}
 .content a {
	 display: inline-block;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #cdd4de;
    padding: 8px 14px;
    border-radius: 4px;
    opacity: 0.4;
    cursor: pointer;
    background: black;
    color: white;
    text-decoration: none;

}

.content a:hover {
    
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388;
	
}


/*-------------------- Image --------------------*/
 img {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: auto;
	 z-index: -1;
	 transform: scale(1.1);
}
 