@font-face {
    font-family: "Papyrus";
    src: url("assets/Papyrus.ttf") format("truetype");
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #000000;
}

#startScreen {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: black;
    color: white;

    font-family: "Papyrus", serif;
    font-size: 20vw;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;

    z-index: 100;
}   

#randomImage {
    width: 100vw;
    height: auto;
    opacity: 0;
    pointer-events: none;
}

.fade {
    animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}