
*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

li{
    text-decoration: none;
    list-style: none;
}

body{
    font-family: 'Righteous', cursive;
}
.logotip{
    background: rgb(255, 255, 255);
    width: 100%;
    display: flex;
    justify-content: center;
}

.lol{
    padding: 50px;
    max-width: 100%;
    box-sizing: border-box;
}

nav{
    margin: auto;
    width: 800px;
    height: 100px;
}

.topnav a{
    color: #000;
    text-align: center;
    padding: 20px 25px;
    font-size: 20px;
}

.topnav a:hover{
    border-bottom: 2px solid black;
}

@media screen and (max-width: 768px){
    .topnav a:not(:first-child){
        display: none;
    }
    
}