@font-face {
    font-family: runescape;
    src: url('runescape_bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    font-family: runescape;
    font-weight: bold;
    color: #FFED00;
}

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #573f4b;
    background: radial-gradient(circle,rgba(87, 63, 75, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.bg-wrapper img#bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: -2;
}

.title {
    position: fixed;
    top: 2vw;
    left: 2vw;
    font-size: 3rem;
    padding: 0;
    margin: 0;
}

.content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flavor {
    position: fixed;
    width: 40vw;
    bottom: 10vh;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

@media (max-width: 800px) or (orientation: portrait) {
    .flavor {
        width: 80vw;
        font-size: 1.5rem;
        line-height: 1.3;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }
}