*{
    margin: 0;
    padding: 0;
}


body{
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    height: 100vh;

}

 /* nav bar */

.navbar{
    display: grid;
    grid-template-columns: 1fr 1fr 3fr 1fr;
    background-color: #0d0d0d;
    color: #ffffff;
    
}

.list{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 30px;
    margin-right: 250px;
}

.list-item{
    list-style-type: none;
}

.list-item:first-child{
 
}

.button-small{
    border-radius: 8px;
    padding: 10px 20px;
    background-color: #a21caf;
    color: #ffffff;
    font-size: 18px;
    margin-top: 18px;
}

nav>div>img{
    padding: 10px 20px;
    margin-left: 70px;
}

.line{
    background-color: #ffffff;
    margin: 15px 140px;
 
}

/* Hero Section */

.hero{
    background-image: url(./assets/bg.png);
    height: 120vh;
    background-position: center;
    background-size: cover;
   
}

.hero-heading{
    text-align: center;
    color: #ffffff;
    font-size: 80px;
    margin: auto 250px;
    padding-top: 170px;
}

.hero-description{
    text-align: center;
    font-size: 30px;
    color: #f1f5f9;
    margin: 10px;
}

.button-large{
    border-radius: 8px;
    padding: 20px 30px;
    background-color: #a21caf;
    color: #ffffff;
    font-size: 20px;
    margin: 60px 700px;
}


