body {
    margin: 92px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;

    font-size: x-large;
    min-height: calc(100vh - 200px);
}

.page {
    position: relative;
    border-radius: 10px;
    margin: 8px;
}

.answer {
    padding: 20px 8px;
}

ul {
    margin: 0;
}

.answer-label {
    display: inline-block;
    font-family: "Indie Flower";
    font-weight: bolder;
    text-decoration: underline;
    text-decoration-color: RoyalBlue;
    color: black;
    font-size: xx-large;
}

.answer-color-display {
    position: relative;
    display: inline-block;
    mask-image: url("../images/mask-color.png");
    mask-origin: content-box;
    mask-size: 100%;
    width: 4.8rem;
    height: 3rem;
    vertical-align: middle;
    z-index: 2;
}
.display-color {
    width: 100%;
    height: 100%;
}

.friend-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}
.friend-nav img {
    width: 92px;
    height: 92px;
    display: block;
}

.nav-left {
    left: 0;
}
.nav-right {
    right: 0;
}

.desktop-only {
    display: block;
}

@media screen and (width <= 500px) {
    body {
        margin: 8px;
    }
    
    .content {
        min-height: calc(100vh - 32px);
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-left {
        margin-bottom: 0;
        border-radius: 10px 10px 0 0;
    }

    .page-right {
        margin-top: 0;
        border-radius: 0 0 10px 10px;
    }

    .desktop-only {
        display: none !important;
    }
}

@media screen and (width > 500px) {
    body {
        min-width: 750px;
    }
}