body{
    background-color: #03070f;
}
/* hero */
.hero-section{
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;

}
.hero-section .hero-background{
    position: absolute;
    width: 100%;
    z-index: -1;
    filter: blur(50px);
}
.hero-section .hero-buttons{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.hero-section .hero-buttons button{
    background-color: #ffffff;
    color: #03070f;
    font-weight: 800;
    font-size: 16px;
    padding: 0.85rem 35%;
    border: none;
    border-radius: 35px;
}
.hero-section h1{
    color: white;
    font-size: 78px;
    text-transform: uppercase;
    font-weight: 900;
    text-align: left;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.hero-section p{
    color: rgb(167, 167, 167);
    font-size: 18px;
    font-weight: 500;
    width: 70%;
    margin-bottom: 2rem;
}
.hero-section .hero-left-side{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 10rem;
}
.hero-section .hero-right-side{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px){
    .hero-section{
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero-section .hero-left-side{
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0rem;
        padding-top: 2rem;
    }
    .hero-section h1{
        font-size: 48px;
    }
    .hero-section p{
        color: rgb(167, 167, 167);
        font-size: 18px;
        font-weight: 500;
        width: 70%;
        margin-bottom: 2rem;
    }
}