.round {
    text-align: center;
}

.zoom-container {
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 2px solid black;
    background-color: #6A0010;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

#map {
    height: 500px;
    width: 500px;
}

.start {
    background-color: #c26d79;
    border: solid black;
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ label > img {
    transform: scale(1.5);
}

.inactive {
    display: none;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Make divs inside flex-container neat */
.flex-container > div {
    width: auto;
    padding: 1rem;
    border: 2px solid black;
    color: white;
    background-color: #6A0010;
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        align-items: center;
    }

    .flex-container > div {
        width: 50%;
        text-align: left;
        list-style-position: inside;
    }
}

.map-container {
    display: flex;
    flex-direction: column;
    height: 505px;
    width: 500px;
    border: 2px solid black;
    background-color: rgb(241, 209, 167);
    padding: 1rem;
}

.map-container button {
    margin-top: 1rem;
    align-self: center;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #c26d79;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#score {
    text-align: center;
}