@font-face {
    font-family: graffiti;
    src: url('../fonts/BungeeSpice-Regular.ttf')
}

.navbar {
    height: 5vw;
    width: 100vw;
    position: absolute;
    background-color: #202124;
    display: flex;
    align-items: center;
    font-size: 2vw;
    border-bottom: whitesmoke solid 4px;
}

.navbar a {
    color: #e7e7e7;
}

.navbar .brand {
    display: block;
    padding: 1.2vw;
    font-size: 2.5vw;
}

.navbar ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar ul li a {
    color: #e7e7e7;
    padding: 1.2vw;
    display: block;
}

.navbar ul a:hover,
.navbar ul a:focus,
.navbar ul .active {
    background-color: #272727;
}

body {
    margin: 0;
    background-color: #202124;
}
a {
    text-decoration: none;
}