@import url('https://fonts.googleapis.com/css2?family=Delius&family=Orbitron:wght@400..900&display=swap');

body{
    height: 500px;
    margin: 0;
}


/* main-section */


.main-section{
    position: relative;
    width: 100%;
    height: 98vh;
    background-image: url(../../assets/images/background/purple_universe_background.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.main-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.main-section-header{
    z-index: 2;
    position: relative;
    height: 120px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-section-logo{
    width: 250px;
}

.main-section-navbar{
    width: 25%;
    display: flex;
    margin-right: 100px;
    align-items: center;
    justify-content: end;
}

.main-section-navbar-item{
    margin-right: 25px;
    text-decoration: none;
    color: white;
    text-shadow: 1px 1px rgb(107, 12, 141);
}

.main-section-navbar-item:hover{
    font-size: 20px;
    transition: 1s;
}

/* hero-section */

.hero-section{
    z-index: 2;
    margin-top: 2%;
    position: absolute;
    width: 80%;
    height: 60%;
    margin-left: 10vw;
    font-family: "Delius";
}

.hero-title{
    color: white;
    text-align: center;
    position: relative;
    margin-top: 5%;
    font-size: 45px;
}

.hero-description{
    color: white;
    position: relative;
    margin-top: 2%;
    text-align: center;
    font-size: 30px;
}

.hero-button{
    position: absolute;
    bottom: 0;
    margin-top: 3%;
    margin-bottom: 2%;
    margin-left: 35%;
    font-size: 30px;
    padding: 2%;
    box-shadow: 0px 0px 30px rgba(24, 156, 128, 0.8)
}

@media (max-width: 600px){

    .main-section{
        height: 98vh;
    }

    .main-section::before{
        position: relative;
    }

    .hero-title{
        font-size: 30px;
    }

    .hero-description{
        font-size: 20px;
    }

    .hero-button{
        position: relative;
        font-size: 25px;
        margin-left: 10%;
    }
}

@media (min-width:768px){
    .hero-button{
        margin-left: 5%;
        position: relative;
    }
}

@media (min-width: 992px){

    .hero-section{
        margin-top: 1%;
    }

    .hero-button{
        padding: 3%;
        position: relative;
        margin-left: 33%;
        font-size: 30px;
    }
}