html, body {
    height: 100%;
    width: 100%;
}

body {
    background-image: url("./background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

body::after {
    z-index: 10000;
    content: "... entering Sandstormland";
    background: #29c2ff;
    position: fixed;
    bottom: 0;
    right: 0;
    height: 40px;
    padding: 30px;
    font-weight: 300;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container.page-content {
    background: white;
    padding: 20px;
}
