/* Main CSS stylesheet for Kozu.me as a whole. This CSS file is to be used
 * in every single page */
@font-face {
    font-family: cozette;
    src: url(../fonts/CozetteVector.ttf);
}

@font-face {
    font-family: scientifica;
    src: url(../fonts/scientifica.ttf);
}

:root {
    background-color: #353130;
    color: antiquewhite;
    font-family: cozette;

    position: relative;
}

a {
    color: white;
}

h1, h2, h3 {
    font-family: scientifica;
    font-size: 30px;
}

h1 {
    font-size: 40px;
}

.navbar {
    overflow: hidden;
    color: white;
    background-color: #1c1a19;
    font-family: cozette, monospace;
    font-size: 18px;

    position: fixed;
    top: -15px;
    left: -3ox;
    width: 100%;
    height: 42px;
    padding: 0;

    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
}

.navbar a {
    text-decoration: none;
}
