:root{
    --myfont: sans-serif;
    --valid: rgb(0, 255, 0);
    --invalid: red;
    --warning: yellow;
    --purple: rgb(142, 1, 155);
    --darkpurple: rgb(65, 0, 71);
    --dark-navyblue: rgb(5, 5, 37); 
    --wheat: rgb(245, 233, 212);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-color: whitesmoke;
    font-family: var(--myfont);
}

.hero-section{
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    position: relative;
    border-top: 1px solid black;
}
.hero-section .text{
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}
.hero-section .text h1{
    color: var(--dark-navyblue);
    font-size: 4rem;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: -2px;
}
.hero-section .text p{
    color: var(--dark-navyblue);
    opacity: .7;
    font-size: 2rem;
    margin: 20px auto;
}
.hero-section .text .hero-btns{
    width: 90%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-section .text .hero-btns a{
    width: 32%;
    height: 100%;
    color: white;
    background-color: var(--dark-navyblue);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 2px;
    text-decoration: none;
    transition: .5s;
}
.hero-section .text .hero-btns a:hover{
    opacity: .5;
}
.hero-section .banner{
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-section .banner img{
    width: 100%;
    height: 100%;
}

@media (max-width:600px) {
    .hero-section{
        width: 100vw;
        height: 60vh;
        flex-direction: column;
    }
    .hero-section .text{
        width: 100%;
        height: 100%;
        padding: 20px;
        position: absolute;
    }
    .hero-section .text h1{
        width: 88%;
        font-size: 2rem;
    }
    .hero-section .text p{
        opacity: 1;
        font-size: 1rem;
        margin: 15px auto;
    }
    .hero-section .text .hero-btns{
        width: 88%;
        height: 30px;
        gap: 2%;
        justify-content: center;
    }
    .hero-section .text .hero-btns a{
        font-size: 10px;
        border-radius: 1px;
        width: auto;
        padding: 5px 10px;
    }
    .hero-section .text .hero-btns a:hover{
        opacity: .5;
    }
    .hero-section .banner{
        width: 100%;
        height: 100%;
    }
}