@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Press+Start+2P&family=Epilogue&family=Space+Grotesk&display=swap');

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url(https://wallpaperaccess.com/download/minimal-illustration-3699503);
    background-size: cover;
    background-position: center;
}

.container {
    display: flex;
    align-items: center;
    padding: 100px;
    justify-content: space-between;
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.navigation .icon {
    display: none;
}

.logo {
    color: #fff;
    font-size: inherit;
    font-weight: inherit;
    font-family: 'Press Start 2P';
    user-select: none;
}

.navigation a {
    position: relative;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    margin-left: 40px;
    font-weight: 500;
}

.navigation a::after {
    content: '';
    left: 0;
    bottom: -6px;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.navigation a:hover:after {
    transform-origin: left;
    transform: scaleX(1);
}

.navigation .btnContact-popup {
    width: 130px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    color: #fff;
    font-weight: 500;
    margin-left: 40px;
    transition: 0.5s;
}

.navigation .btnContact-popup:hover {
    background: #fff;
    color: #162938;

}

.content {
    margin: 45px;
    width: 500px;
}

.content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 3.5em;
    color: #d5ff40;
}

.content h2 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 2em;
    color: #fff;
}

.content p {
    font-family: 'Epilogue,sans-serif';
    font-weight: 600;
    font-size: 1rem;
    color: whitesmoke;
    word-wrap: normal;
}

.wrapper {
    position: relative;
    width: 400px;
    height: 540px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
}

.wrapper .social-box {
    width: 100%;
    padding: 40px;
}

.wrapper .social-box a {
    text-decoration: none;
}

.social-btn {
    display: flex;
    margin-top: 20px;
    width: 100%;
    height: 45px;
    background: #162938;
    border: none;
    outline: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    align-items: center;
}

.social-icon {
    color: #4285F4;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 45px;
    background: white;
    font-size: 2em;
    color: #4285F4;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    border-bottom-right-radius: 20px;
}

.wrapper .icon-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: #162938;
    font-size: 2em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    cursor: pointer;
    z-index: 1;
}

.social-box h2 {
    font-size: 2em;
    color: #162938;
    text-align: center;
}

.social-title {
    width: 100%;
    align-items: center;
}

footer {
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center;
    padding: 0 10% 0 10%;
    background-color: #162938;
    justify-content: space-between;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
}

.footer-nav a {
    position: relative;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    .navigation .btnContact-popup {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .navigation a:not(:first-child) {
        display: none;
    }

    .btnContact-popup {
        display: none;
    }

    .navigation a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .navigation.responsive {
        position: relative;
    }

    .navigation.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .navigation.responsive a {
        float: none;
        display: block;
        text-align: left;
        color: #fff;
    }
}

@media screen and (max-width: 600px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 35px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 99;
    }

    footer p {
        display: flex;
        width: 100%;
        height: 50px;
        align-items: center;
        justify-content: center;
        background-color: #162938;
        font-size: 1em;
        font-weight: 500;
        color: #fff;
    }

    .footer-nav {
        display: none;
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 25px;
        justify-content: space-between;
        flex-direction: column;
        min-height: 100vh;
    }

    .content {
        margin: 100px 0 50px 0;
        width: 320px;
    }
    .content h1 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 350;
        font-size: 1.9em;
        color: #d5ff40;
    }

    .content h2 {
        font-family: 'Epilogue', sans-serif;
        font-weight: 300;
        font-size: 1em;
        color: #fff;
    }

    .content p {
        font-family: 'Epilogue,sans-serif';
        font-weight: 300;
        font-size: .9rem;
        color: whitesmoke;
        word-wrap:break-word;
    }

    .wrapper {
        position: relative;
        width: 320px;
        height: 540px;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(20px);
        box-shadow: 0 0 30px rgba(0, 0, 0, .5);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: 20px;
    }
}