:root {
    --darkest-font: #46425e;
    --header-footer-bg: #15788c;
    --lightest-font: #ffeecc;
    --accent-color: #00b9be;
    --secondary-accent: #ff6973;
}

button {
    color: var(--lightest-font);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    background: var(--header-footer-bg);
    padding: 8px;
    margin: 2px;
    width: 100px;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
}

button:hover {
    /* text-decoration: underline; */
    background: var(--accent-color);
}

.gameContainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.scoreContainer {
    border: 1px solid var(--header-footer-bg);
    border-radius: 8px;
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
}

.theScores {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.buttonContainer {
    width: 60vw;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
}

.imageContainer {
    width: 60vw;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}

.messageContainer {
    border: 1px solid var(--header-footer-bg);
    border-radius: 8px;
    width: 60vw;
    height: 80px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.replayContainer {
    width: 60vw;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.replayButton {
    visibility: hidden;
}

@media (max-width: 768px) {
    .scoreContainer,
    .messageContainer,
    .buttonContainer {
        width: 90vw;
    }

    button {
        width: 80%;
    }

    .imageContainer {
        display: none;
    }
}
