

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

html{
    font-size: 75%;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: rgb(255, 255, 255);
    color: white
}

header{
    margin-top: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding:3rem 5%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 350;
    font-size: 1.05rem;
    z-index: 100;
    color: white;

}

.logo   {
    font-size: 3rem;
    font-weight: 425;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: 0.2s ease;
}

.logo:hover{
    transform:scale(1.05);   
}

nav a{
    margin-left: 2rem;
    color: rgb(0, 0, 0);
    font-size: 1.4rem;
    font-weight: 240;
    transition: .2s ease;
}
nav a:hover,
nav a.active{
    color: rgb(0, 0, 0);
    border-bottom: 2px solid rgb(0, 0, 0);
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;    
}

@media(max-width:995px){
    
    nav a{
        
        margin: 3rem ;
        font-size: 1.5rem;
    }
}