/* reset styles */
*
{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{
    
    font-family: "Poppins", sans-serif;
}
/* nav starts */
nav
{
    background-color: rgba(0,0,0,0.8);
    justify-content: space-between;
    height: 70px;
    padding: 20px;
    position: fixed;
}
nav ul
{
    list-style-type:none;
}
nav ul a 
{
    text-decoration: none;
    padding: 1rem;
    font-size: 1.2rem;
    
}
nav>h1{
    font-size: 2.5rem;
    font-weight: 500;
}
/* nav ends */
/* hero starts */
#hero
{
    height: 100vh;
    background-image: url('images/hero\ \(1\).webp');
    background-size: cover;
    position: relative;
}
#hero>h1{
    font-size: 50px;
    font-weight: 600;
}
#hero>p{
    width: 35%;
    font-size: 25px;
    font-style: italic;
    text-align: center;
    margin-bottom: 0.5rem;
}
#hero::before{
    content:'';
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;

}
#hero>*,nav{
    z-index: 10;
}
/* hero ends */