body {
    background-image: url(images/gameg_bg.jpg);
}
.container {
    background-color: white;
    box-shadow: 0 0 5px #CFCFCF;
    border: 1px var(--border) solid;
    width: 800px;
    margin: 40px auto 0;
}
header {
    background-image: url(images/gameg_header.jpg);
    background-size: 100%;
    background-position: center;
    border-bottom: 1px var(--border) solid;
    padding: 100px 10px 5px;
    color: white;
    position: relative;
}
header span {
    background-color: white;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}
header:hover span {
    display: block;
}

main {
    display: flex;
}

/* LEFT */

.left {
    width: 170px;
    padding: 10px;
    text-align: right;
}
.left ul {
    list-style: none;
}
.left li:not(:last-child) {
    margin-bottom: 10px;
}

/* RIGHT */

.right {
    width: 630px;
    padding: 10px;
}
.right ol {
    margin-left: 25px;
}

#ddlc #words {
    height: 500px;
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap
}