    .rules-above {
        background: transparent;
        font-family: var(--pixelfont);
        text-align: center;
        padding-top: 2vw;
    }

    .rules-above h1 {
        color: lightblue;
        font-size: 1.5vw;
        margin-bottom: 0.5vw;
        text-shadow: 0 0 10px black;
        transition: ease 500ms;
    }

    .rules-above h2 {
    color: aliceblue;
    font-size: 1vw;
    text-shadow: 0 0 5px black;
    transition: ease 500ms;
    }

    .rules-above h1:hover {
    transition: ease 500ms;
    color: var(--maincolor);
    font-size: 1.5vw;
    text-shadow: 0 0 10px black;
    letter-spacing: 0.5vw;
    }

    .rules-above h2:hover {
    color: var(--maincolor);
    transition: ease 500ms;
    font-size: 1vw;
    text-shadow: 0 0 5px black;
    }

    .navbar a .other-nav{
    padding: 1.5vw;
    padding-top: -10vw;
    }

    .other-title {
    background: transparent;
    padding-top: 10vw;
    padding-bottom: 1vw;
    font-family: var(--pixelfont);
    text-align: center;
}

.other-title h1 {
    color: yellowgreen;
    font-size: 3.5vw;
    margin-bottom: 0.5vw;
    text-shadow: 0 0 10px black;
    transition: ease 500ms;
}

.other-title h1:hover {
    transition: ease 500ms;
    color: var(--maincolor);
    font-size: 3.6vw;
    text-shadow: 0 0 10px black;
    letter-spacing: 0.5vw;
}

.other-title h2 {
    color: aliceblue;
    font-size: 1.5vw;
    text-shadow: 0 0 5px black;
    transition: ease 500ms;
}

.other-title h2:hover {
    color: var(--maincolor);
    transition: ease 500ms;
    font-size: 1.6vw;
    text-shadow: 0 0 5px black;
}

.rules-header {
    /* gradient on top, image underneath */
    background-image:
        linear-gradient(to bottom, rgba(36, 28, 20, 0) 60%, #241c14 100%),
        url(/images/headerbackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
    width: 100%;
    background-color: #241c14; /* fallback */
}

.rules-box {
    height: 20vw;
}

@media (max-width: 720px) {
    .other-title {
        height: auto;
    }
    .other-title h1 {
        font-size: 5.5vw;
    }
    .other-title h2 {
        font-size: 2.5vw;
    }
}