@font-face {
    font-family: 'MCFont';
    src: url('MinecraftRegular.otf') format('opentype');
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'MCFont';
    height: 100vh;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    align-items: center;
}

* {
    color: #333333;
}

img {
    max-width: 100vw;
    height: auto;
    padding: 0 5vh;
    margin-top: 10vh;
    box-sizing: border-box;
}

.light-img {
    display: block;
}

.dark-img {
    display: none;
}

.quote, 
p {
    margin-top: 15vh;
    padding: 0 5vh;
    box-sizing: border-box;
}

.quote {
    height: 25dvh;
    width: 75%;
    text-wrap: balance;
}

p {
    flex-grow: 1;
}


@media (prefers-color-scheme: dark) {
    body {
        background-color: #0c0c0c;
    }

    * {
        color: #cccccc;
    }

    .light-img {
        display: none;
    }

    .dark-img {
        display: block;
    }
}
