.episode {
    height: 100vh;
    opacity: 0;
}
.episode-selected {
    display: block;
}

.episode-background {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.episode-grid {
    display: grid;
    grid-template-columns: 1fr 600px;
}

.game-rules div.wrap {
    font-weight: 500;
    margin: 100px auto 0;
    height: auto;
    max-width: 600px;
    padding: 20px 30px;
    background: rgba(255, 251, 222, 0.75);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(10px);
    font-size: 18px;
    color: rgba(0,0,0,0.8);
}

.scene-title {
    background-image: url(../assets/bar.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    height: 30px;
    text-align: center;
    font-size: 25px;
    font-style: italic;
    position: absolute;
    left: 0; right: 0;
    z-index: 1000;
    padding: 10px 0 20px;
    color: rgba(233,182,133,1);
    text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
    overflow:hidden;
    white-space: nowrap;
}
