body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(120deg, #5078A2, #5078A2),
    linear-gradient(56.55deg, rgba(255, 255, 255, 0) 4.98%, rgba(255, 255, 255, 0.2) 100%);
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

.container {
    text-align: center;
    max-width: 100vw;
    overflow: hidden;
}

.logo img {
    width: 145px;
    height: 162px;
    margin-top: 331px;
    margin-bottom: 100px;
    max-width: 100%;
}

.social-media,
.contacts {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    max-width: 100%;
}

.social-media{
    margin-bottom: 60px;
}

.social-media a,
.contacts a {
    margin-right: 40px;
    text-decoration: none;
    color: #EACB92;
    display: flex;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: medium;
    opacity: 0.5;
}

.social-media a:hover,
.contacts a:hover{
    opacity: 1;
    transition: all 0.4s;
}

.social-media a img,
.contacts a img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.social-media a img:last-child,
.contacts a img:last-child{
    margin-right: 10px;
}

footer p{
    margin-top: 195px;
    margin-bottom: 120px;
    color: #7C9AB9;
    font-size: 13px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

@media(max-width: 600px){
    body{
        overflow-y: auto;
        display: block; 
    }

    .container {
        padding-top: 12.4vh; 
    }

    .logo img{
        margin-top: 0; 
        margin-bottom: 12.4vh;
    }

    .social-media,
    .contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    .social-media a,
    .contacts a {
        width: 275px;
        height: 85px;
        margin: 0 35px 14px 35px;
        padding-left: 40px;
        text-decoration: none;
        color: #EACB92;
        display: flex;
        border-radius: 10px;
        background: #FFFFFF0D;
        opacity: 1;
    }

    .contacts a:last-child{
        margin-bottom: 0;
    }

    footer{
        display: flex;
        justify-content: center;
    }
    footer p {
        margin-top: 100px;
        margin-bottom: 60px;
    }
}