
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'BrandinkSans', sans-serif;
    word-wrap: break-word;
}

header {
    border-bottom: 2px solid red;
    font-family: 'MonumentValley12', sans-serif;
    font-size: 4rem;
}

.construction {
    font-family: 'MonumentValley12', sans-serif;
    font-size: 2rem;
    text-align: center;
}

main {
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main .preamble {
    text-indent: 1em;
}

main .preamble p {
    padding: 0;
    margin: 0;
}


footer{
    position: absolute;
    bottom: 0;

    width: 100%;
    border-top: 2px solid red;

    text-align: center;
}


/* FONTS BELOW */ 
@font-face {
    font-family: 'MonumentValley12';
    src: url('./public/fonts/MonumentValley12-X55o.otf');
}

@font-face{
    font-family: 'BrandinkSans';
    src: url('./public/fonts/BrandinkSans-rgOpA.otf');
}