@import url("assets/font/fonts.css");

html {
    width: 100%;
    height: 100%;
    background-color: #262626;
    font-family: "Quattrocento Sans", sans-serif;
    color: white;
}

body {
    margin: auto;
    text-align: center;
    display: grid;
    place-items: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 96px;
    display: grid;
    align-content: center;
    justify-content: center;
    background-color: black;
    font-size: 2em;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

header img {
    margin: 1em;
    max-height: 2.5em;
}

main {
    font-size: 1.2em;
}

a {
    text-decoration: none;
    color: inherit;
}

a.underline {
    text-decoration: underline;
    color: inherit;
}

footer {
    margin: 1em;
}

footer a {
    text-decoration: underline;
}

@media screen and (max-width: 699px) {
    main {
        font-size: 1.0em;
    }

    header {
        justify-content: space-between;
    }

    #name {
        width: 170px;
        margin: 1em;
    }
}

@media screen and (max-width: 399px) {
    main {
        font-size: 0.8em;
    }

    #name {
        font-size: 0.85em;
        margin: 0.5em;
    }
}

@media screen and (max-width: 299px) {
    main {
        font-size: 0.6em;
    }

    #name {
        font-size: 0.7em;
    }
}