/***************************
***********GENERAL**********
***************************/

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
body{
	background-image: url(../images/background.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed;
	color: #fff;
	font-family: "Exo 2", serif;
	font-size: calc(0.5em + 1vw);
}
.content{
	width: 40vw;
	text-align: center;
	margin: 2em 3em;
}
a:link{
	color: #fff;
	text-decoration: none;
}
a:visited{
	color: #fff;
}
a:active{
	color: #a3a3a3;
}
img[src="images/logo.png"]{
	position: fixed;
	width: 26vw;
	right: 12vw;
	top: 25vh;
}

/***************************
********NAVIGATION**********
***************************/

.navigation{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: space-around;
	/*background-color: #000;*/
	background-image: linear-gradient(0.25turn, #170716, #041f5a);
	box-shadow: 1px 2px 8px #000;
	position: fixed;
	top: 0.3em;
	left: 0;
	width: 100vw;
}

.navigation > li{
	padding: 0.5em 1em;
}

/***************************
***********CONTENT**********
***************************/

h1.name{
	margin-top: 16vw;
	font-weight: normal;
	border-bottom: 2px dashed #636363;
	padding-bottom: 0.3em;
}
h2{
	font-weight: normal;
	border-bottom: 2px dashed #636363;
	padding-bottom: 0.3em;
}
.specification{
	margin-top: -0.6em;
	margin-bottom: 19vw;
}
.aboutMe{
	margin-top: -0.7em;
	margin-bottom: 16vw;
}
.link{
	text-shadow: 1px 1px 3px #fff;
}
.forMobile{
	display: none;
}
.contacts{
	margin-bottom: 19vw;
}


@media (max-width: 768px) {
    body {
		background-position: center;
    	background-repeat: no-repeat;
        font-size: 0.7em;
        padding: 10px;
		background-image: url(../images/mobilbackgound.png);
    }

	.content{
		display: none;
	}

    .forMobile {
        display: block;
        text-align: center;
    }

    .forMobile h2 {
        font-size: 1.5em;
        margin-top: 20px;
        border-bottom: 2px solid #636363;
        padding-bottom: 5px;
    }

    .forMobile p {
        font-size: 1em;
        line-height: 1.5;
        margin: 10px 0;
    }

    .navigation {
        display: none;
    }

    img[src="images/logo.png"] {
        position: static;
        width: 50vw;
        margin: 20px auto;
        display: block;
    }

    .contacts {
        margin-top: 20px;
    }

    .contacts .app {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
    }

    .contacts .app img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .time {
        margin-top: 10px;
        font-size: 0.9em;
        font-weight: bold;
    }
}
