@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

body, html {
    margin: 0;
}

body {
    margin: 0;
    height: 100vh;
    overflow-y: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url("../../images/compress.webp"); */
    background-image: url("../../images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: 0;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #181818 62%, #686868 100%);
    opacity: 0.6;
    z-index: 0;
}

#logo {
    position: absolute;
    width: 12vw;
    right: 1vw;
    top: 1vw;
    z-index: 3;
    cursor: pointer;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100vh;
    width: 45vw;
    padding-left: 5vw;
    padding-right: 5vw;
    position: absolute;
    z-index: 2;
}

.container-right {
    z-index: 2 !important;
}

#description {
    font-family: 'Quicksand', sans-serif;
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

@media screen and (max-width: 1024px) {

    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto !important;
        overflow-y: visible !important;
    }

    body::before, body::after {
        position: fixed !important;
        background-repeat: repeat-y !important;
        height: 100% !important;
    }

    #logo {
        position: relative !important;
        /* width: 50vw !important; */
        height: 20vw !important;
        width: auto !important;
        margin: 5vw;
        margin-bottom: 10vw;
    }

    body::after {
        background: linear-gradient(to bottom, #000000 50%, #181818 100%);
    }

    .container {
        height: auto !important;
        width: 80vw !important;
        gap: 7vw;
        position: relative !important;
    }
}