@font-face {
    font-family: AncientModern;
    src: url(./assets/fonts/AncientModernTales-a7Po.ttf);
}
@font-face {
    font-family: BDragon;
    src: url(./assets/fonts/EightBitDragon-anqx.ttf);
}

body {
    background-color: #141516;
    width: 99vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
img {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.image-container {
    margin: 10px 0;
    width: 100%;
    max-width: 40vw;
    text-align: center;
}
.image-container img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
}
.page-end {
    width: 0px;
    margin-top: 80px;
}
.title {
    font-family: AncientModern;
    font-size: 3em;
    color: white;
    margin: 20px 0 5px 0;
}
.subtitle {
    font-family: BDragon;
    font-size: 1em;
    color: gray;
    margin: 0 0 10px 0;
}
.ditch {
    color: darkturquoise;
}

@media (max-width: 1200px) {
    .image-container {
        max-width: 60vw;
    }
}

@media (max-width: 600px) {
    .image-container {
        max-width: 80vw;
    }
}