You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
427 B

.nav-container {
position: fixed;
display: flex;
flex-direction: row;
justify-content: flex-end;
width: 100%;
}
.nav-item {
list-style-type: none;
margin: 1.5em 1em;
padding: 0;
font-family: Montserrat, sans-serif;
font-size: 1.7em;
color: white;
transition-duration: 200ms;
}
.nav-item a {
text-decoration: none;
color: inherit;
}
.nav-item:hover {
transform: scale(1.1);
cursor: pointer;
}