: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;
    width: 100%;
    max-width: 100px;
    margin: 2px;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
}

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

.content-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.controlsContainer {
    width: 100%;
    max-width: 50vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.etchBoardContainer {
    border: 1px solid black;
    height: 50vh;
    width: 100%;
    max-width: 50vh;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.etchGridPiece.blank {
    background-color: white;
}

.etchGridPiece {
    border: 1px solid darkgray;
    box-sizing: border-box;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .controlsContainer {
        width: 100%;
    }

    .etchBoardContainer {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    button {
        max-width: 80%;
    }
}
