body {
    margin: 0px;
    padding-top: 75px;
    background-color: black;
}

.page-content {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 75px);
    flex-wrap: nowrap;
    width: 100%;
}

.left-content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    height: calc(100vh - 75px);
    z-index: 10;
}

.left-content img {
    height: 40vh;
    padding: 2.5vh 0;
    width: auto;
}

.middle-content {
    font-family: "Roboto", Arial; 
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0; 
    text-align: center;
    align-items: center;
    margin: 0 auto;
    max-width: calc(100vw - 40rem - 10vh);
    box-sizing: border-box;
    z-index: 5;
}

.page-title {
    padding-top: 0.5em;
    padding-bottom: 0.75em;
    font-weight: bold;
    font-size: 5em;
    text-align: center;
    color: rgb(215, 215, 215);
    text-shadow: -3px -3px 10px rgb(70, 70, 70), 3px 3px 10px rgb(70, 70, 70);
}

.question-box {
    color: rgb(215, 215, 215);
    margin: 0 0 1em 0; 
    font-weight: bold;
    text-align: center;
    border: 2px solid rgb(69, 69, 69);
    max-width: 725px; 
}

.question {
    background-color: rgb(69, 69, 69);
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    padding: 0.25em 0;
}

.answer {
    color: rgb(215, 215, 215);
    padding: 0.75em 1em;
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
}

.main-x-logo {
    padding-top: 5em;
    text-align: center;
}

.main-x-logo img {
    height: 2em;
}

.main-x-username {
    color: rgb(215, 215, 215);
    font-size: 1em;
    text-align: center;
}

.right-content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    right: 0;
    height: calc(100vh - 75px);
    z-index: 10;
}

.right-content img {
    height: 40vh;
    padding: 2.5vh 0;
    width: auto;
}

@media only screen and (max-width: 1100px) {
    .left-content,
    .right-content {
        display: none;
    }

    .middle-content {
        padding: 0 2vh;
        margin: 0 2vh;
        max-width: calc(100vw - 4vh);
    }

}

@media only screen and (max-width: 520px) {
    .page-title {
        font-size: 3em;
    }

    .question {
        font-size: 1.25em;
    }
    
    .answer {
        font-size: 1em;
    }
}