@font-face {
    font-family: Neucha;
    src: url(../font.ttf);
}
body{
    font-family: 'Open Sans', sans-serif;
    background-color: #e2e2e2;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
h3{
    font-weight: normal;
    font-size: 3vw;
}
*{
    text-decoration: none;
    outline: none;
    -webkit-appearance: none;
    -webkit-transition-duration: 0.5s; 
    -o-transition-duration: 0.5s; 
    -moz-transition-duration: 0.5s; 
}
ul li{
    display: inline;
    text-transform: uppercase;
}
.nava:hover{
    border-bottom: solid 0.4vw #0669b1;
    color: #e2e2e2;
}
.nava{
    color: white;
    font-size: max(1.5vw,1.5vh);
    margin-left: 4vw;
    padding-bottom: 0.4vw;
}
.main{
}
#nav{
    height: 4vw;
    position: absolute;
    z-index: 999;
    width: 100%; /* Ensures the navigation spans the full width */
    display: flex;
    justify-content: center; /* Centers ul horizontally */
    align-items: center; /* Aligns elements vertically */
}
ul{
    height: 2vw;
    display: flex;
    justify-content: center; /* Centers items inside the ul */
	align-items: center;
    margin-top: 5vh;
    width: fit-content; /* Prevents width expansion */
	//margin: 0 auto; /* Centers ul horizontally */
    padding: 0; /* Ensures no unwanted spacing */
}
.user{
    background-color: #0669b1;
    padding: 0.3vw 1vw; 
    border-radius: 5vw;
}
.user:hover{
    border: none;
    background-color: #083586;
}
#ert{
	font-size: max(2vw,2vh);
    background-color: lightcoral;
    width: max(15vw,15vh);
    padding: 0.5vw 0.5vw;
    border: solid 0.1vw darkred;
    border-radius: max(10vw,10vh);
}
