@font-face {
    font-family: EvilOfFrankenstein;
    src: url(EvilOfFrankenstein.ttf);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: EvilOfFrankenstein;
    user-select: none;
}

body {
    margin: 1rem;
    background-image: url("images/background.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

img {
    border: 1px grey outset;
    height: 40vh;
    width: 100%;
    margin: auto;
    display: none;
}

p {
    color: #fff;
    margin: 1rem;
    opacity: 0;
}

ul {
    list-style: none;
}

li button {
    display: none;
    margin-top: 1rem;
    width: 100%;
    cursor: pointer;
    padding: 6px;
    background-image: url("images/button-background.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    border: 1px grey outset;
}

.no-select {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-select:focus {
    outline: none !important;
}

.no-display {
    display: none;
}

@media (orientation: landscape) {
    img {
        width: 40vw;
        height: 60vh;
    }

    li button,
    p {
        width: 40vw;
        margin: 1rem auto;
    }
}

.fade-in {
    opacity: 1;
    transition: opacity 3s linear;
    visibility: visible;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80vw;
    margin: 0;
}

.fade-out {
    opacity: 0;
    transition: opacity 3s linear;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80vw;
    margin: 0;
}