
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

#navbar{
    background-color: red;
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 10vh;
}

#navbar-buttons{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-left: auto;
    padding-right: 20px;
    color: black;
}

.navbar-button{
    text-decoration: none;
    color: black;
    background-color: yellow;
    text-align: center;
    height: 5vh;
    width: 6vw;
    line-height: 5vh;
    margin-top: 2vh;
    padding: .5vh;
    font-size: 1.5em;
    font-family: 'Manrope';

}

a{
    text-decoration: none;
    color: black;
}