#game-content.two-col .flex-col:last-of-type {
    padding: 2%;
    box-sizing: border-box;
}

#game-content.two-col .flex-col:last-of-type p {
    margin-bottom: 25px;
}

#game-content.two-col .flex-col:last-of-type h3 {
    font-size: 1.2em;
    letter-spacing: 3px;
} 

#game-content.two-col .flex-col:last-of-type button {
    border: 2px solid black;
    background-color: white;
    color: black;
    padding: 20px;
    line-height: 0;
    transition: all .4s linear;
}

#game-content.two-col .flex-col:last-of-type button:hover {
    background-color: black;
    color: white;
}

/* The Modal (background) */
.modal {
    margin: auto;
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Content/Box */
.modal-content {
    background-color: #f8f8f8;
    margin: auto;
    padding: 30px 20px 20px 20px;
    border: 1px solid #888;
    width: max-content;
    text-align: left;
    border-style: solid;
    border-color: #0e0e0e;
    box-shadow: 2px 2px 0px 0px #0e0e0e;
    font-weight: bold;
    position: relative;
}

.modal button {
    margin-left: 15px;
}

.modal button:first-of-type {
    margin-left: 0;
}

.closeButton {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 12px;
    cursor: pointer;
    z-index: 999;
}

#cipher {
    display: block;
    margin: 15px auto auto auto;
}

/* Riddle Reveal */
.spoiler {
    background-color: black;
    width: 75%;
}

.spoiler:hover {
    background-color: white;
}

/* Image inside of text box */
.riddletextbox {
    box-sizing: border-box;
    font-size: 24px;

    /* Change this based on your background image grid */
    height: 35px;
    width: 35px;
    margin: 0;
    margin-right: -6px;
    margin-bottom: 15px;
    border: 2px solid black;
    background-color: #f4f4f4;

    /* change the background image here to a grid and then limit the characters for each word */
    text-align: center;
    text-transform:uppercase;
}

.riddletextbox-key {
    background-image: url("../img/riddle/circle-background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#game-content.two-col .flex-col:last-of-type #answer-prompt {
    margin: 35px 0 15px 0;
}