body {
    max-width: 330px;
    margin: 0 auto;
    background-color: #eee;
    font-family: 'Verdana', sans-serif;
    /*background-image: url("../img/bg.svg");*/
	background-size: cover;
	background-attachment: fixed;
}

.imgTitle {
    margin: 1.5px auto;
    width: 325px;
    display: inline-flex;
}

.imgTitle img {
    width: 325px;
    border-radius: 15px;
    transition: box-shadow .3s ease-in;
}

.imgTitle img:hover {
    box-shadow: 0 0 15px #999999;
    transition: box-shadow .3s ease-in;
}

.logo {
    margin: 25px auto;
    border-radius: 73px;
    width: 146px;
    height: 146px;
    transition: box-shadow 0.3s ease-in;
}

.logo:hover {
    box-shadow: 0 0 15px grey;
    transition: box-shadow .3s ease-in;
}

.logo img{
    width: 146px;
    height: 146px;
}

.langSwitcher {
    display: inline-block;
    padding: 10px;
    background-color: white;
    border-radius: 30px;
    position: absolute;
    margin-top: 115px;
    transition: box-shadow .3s ease-in;
}

.langSwitcher p {
    margin: 0 auto;
}

.langSwitcher:hover {
    box-shadow: 0 0 15px grey;
    transition: box-shadow .3s ease-in;
}

.footer {
    margin: 30px 0 0 0;
}

.footer p {
    text-align: center;
}

.socNetBlock {
    margin: 0 auto;
    display: block;
    width: 45px;
}

.socialNetImg {
    width: 25px;
    height: 25px;
    display: inline-block;
    margin: 5px;
    padding: 5px;
    transition: background-color .3s ease-in;
    border-radius: 50%;
}

.socialNetImg:hover {
    background-color: white;
    transition: background-color 0.1s;
}

.imgTitleActual {
    margin: 1.5px auto;
    width: 325px;
    display: inline-flex;
}

.imgTitleActual img {
    width: 325px;
    border-radius: 15px;
    box-shadow: 0 0 15px lightblue;
    transition: box-shadow .3s ease-in;
}

.imgTitleActual img:hover {
    box-shadow: 0 0 80px blue;
    transition: box-shadow .3s ease-in;
}

@media only screen and (min-width: 675px) {
    body {
        max-width: 660px;
    }
}

@media only screen and (min-width: 1005px) {
    body {
        max-width: 990px;
    }
}

@media only screen and (min-width: 1350px) {
    body {
        max-width: 1320px;
    }
}

@media only screen and (min-width: 1660px) {
    body {
        max-width: 1650px;
    }
}