@import url('https://fonts.googleapis.com/css2?family=Alata&family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Big+Shoulders+Display:wght@100..900&family=Commissioner:wght@100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&family=Epilogue:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Karla:ital,wght@0,200..800;1,200..800&family=Kumbh+Sans:wght@100..900&family=League+Spartan:wght@100..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Overpass:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Space+Grotesk:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Young+Serif&display=swap');

:root{
    --Red: hsl(0, 100%, 68%);
    --Very-Dark-Blue: hsl(230, 29%, 20%);
    --Dark-Grayish-Blue: hsl(230, 11%, 40%);
    --Grayish-Blue: hsl(231, 7%, 65%);
    --Light-Grayish-Blue: hsl(207, 33%, 95%);
}

body{
    font-family: Barlow Condensed, Malgun Gothic;
    font-size: 24px;
    overflow-x: hidden;
}

*{
    text-transform: uppercase;
}

.hide{
    display: none !important;
}

.desktopNav{
    display: none;
}

.mobileNav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.mobileNav .links{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: absolute;
    padding: 4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    top: 5rem;
    gap: 1.8rem;
    left: 2rem;
    width: 60%;
    box-shadow: -10px 10px 10px #c7c6cb;
    a{
        text-decoration: none;
        color: black;
        font-weight: 600;
    }
}

.login{
    color: var(--Light-Grayish-Blue);
}

hr{
    width: 100%;
}

.sectionTwo img{
    margin-top: 2rem;
    width: 140%;
}

.blackButton{
    background-color: var(--Very-Dark-Blue);
    color: white;
    border-radius: 1rem;
    border: none;
    padding: .5rem;
    font-weight: 700;
}

.row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.monospace{
    letter-spacing: 1rem;
    font-size: 18px;
}

p{
    font-size: 32px;
    text-transform:capitalize;
    padding-right: 1rem;
}

h1{
    font-size: 3.5rem;
    color: var(--Very-Dark-Blue);
}

.sectionThree{
    margin-left: 2rem;
}

.buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.buttonTwo{
    background-color: var(--Red);
    padding: 1rem;
    color: white;
    border-radius: .4rem;
    transition: background-color 0.5s ease;
    cursor: pointer;
}

.buttonTwo:hover{
    background-color: #fc8485;
}

@media (min-width: 800px){
    body{
        font-size: 18px;
    }
    .background{
        position: absolute;
        top: 0;
        right: 0;
        background-color: var(--Light-Grayish-Blue);
        width: 50%;
        height: 55vh;
        z-index: -10000;
        border-bottom-left-radius: 5rem;
    }
    .mobileNav{
        display: none;
    }
    .desktopNav{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 3.5rem;
        padding-left: 9.5rem;
        padding-right: 9.5rem;
    }
    .desktopNav .links{
        display: flex;
        gap: 1rem;
        a{
            text-decoration: none;
            color: black;
        }
        a:hover{
            text-decoration: underline;
        }
    }
    a{
        .login{
            color: var(--Light-Grayish-Blue);
        }
    }
    .sectionTwo img{
        width: 120%;
        height: 26rem;
        margin-left: 7rem;
    }
    h1{
        /* border: 1px solid black; */
        width: 130%;
        margin-top: -1rem;
    }
    .row{
        gap: 1rem;
        font-size: 18px;
        margin-top: -1rem;
        margin-left: -2rem;
    }
    .monospace p{
        text-transform: uppercase;
        letter-spacing: .3rem;
        width: 100%;
    }
    .flexSections{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 0rem;
        gap: 4rem;
        margin-top: 6rem;
        margin-left: 7.8rem;
    }
    p{
        font-size: 18px;
        color: var(--Grayish-Blue);
    }
}