@font-face {
    font-family: "BoldPixels";
    src: url(font/BoldsPixels.ttf);
}

@font-face {
    font-family: "Goodbye Despair";
    src: url(font/goodbyeDespair.ttf);
}

body {
    margin: 0;
    background-color: black;
    background-image: url("img/blue.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}


/* Main page */

#header {
    font-family: "Goodbye Despair";
    text-align: center;
    margin-top: 100px;
    font-size: 30px;
    text-shadow: 3px 3px black;
}

#iboobi {
    left: 0;
    max-width: 10%;
}

/* Misc */
.navbar {
    font-family: "BoldPixels";
    overflow: hidden;
    position: fixed;
    border-style: solid;
    border-color: #6b4e8f;
    border-width: 1px;
    background-color: #19001D;
    background-image: url("img/iboobi.webp");
    image-rendering: pixelated;
    background-position: bottom 2px right 4px;
    background-repeat:no-repeat;
    background-size: contain;
    padding-right: 55px;
    margin-top: 77px;
    z-index: 100;
}

.navbar a {
    display: block;
    text-shadow: 4px 0px #636363;
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
}

.navbar a:hover {
    transform: scale(1.1);
    transition: 0.1s;
}

/* Responsive settings */
@media screen and (max-width: 834px) {
    .navbar {
        width: 100%;
        background-image: none;
        display: flex;
        justify-content: center;
    }
}