@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'Mammoth';
    src: url('/assets/Mammoth.ttf');
}
@font-face {
    font-family: 'MammothOutline';
    src: url('/assets/MammothOutline.ttf');
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ddbb44;
    color: #0d0d0d;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

    overflow-x: hidden;
}

.title {
    font-family: 'MammothOutline', sans-serif;
    font-size: max(10vw);
    margin-bottom: 0;
}

.full {
    font-family: 'Mammoth', sans-serif;
}

p {
    margin-top: 0;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;

    display: flex;
    justify-content: center;
    color: #0000001a;
}