*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
}

nav{
    width: 100%;
    position: fixed;
    display: flex;
    padding: 40px 100px;
    background-color: black;
    transition: all 0.5s ease-in-out;
    
}

.nav.active{
    color: black;
    background-color: white;
}

.nav.active ul li a{
    color: black;
}

.nav.active h2 a{
    color: black;
}   

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}

nav ul{
    display: flex;
}

nav ul li{
    list-style: none;
    margin-left: 20px;
}   

nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}   

nav h2 a{
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
}


.hero-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(assets/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-container h1{
    color: white;
    font-size: 3rem;
    font-weight: 200;
    text-align: center;
}

.hero-container .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.hero-container p{
    max-width: 550px;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.hero-container button{
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}   

.about-container{
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #f5f5f5;
}   

.about-container .container{
    margin: 50px;
    padding: 50px;
}

.about-container h1{
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 50px;
    text-align: center;
}

.about-container p{
    max-width: 800px;
    margin-bottom: 20px;
    line-height: 20px;
    font-size: 1rem;
    font-weight: 500;
    word-spacing: 10px;
}