* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

main {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 500px;
    height: 100vh;
    margin: 0 auto;
    justify-content: center;
}

.create-grid-button {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    height: 50px;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
    width: 100%;
}

.create-grid-button:hover {
    background-color: rgb(32, 32, 32);
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    height: 500px;
    margin: 0 auto;
    width: 500px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.cellRow {
    display: flex;
    height: 100%;
    width: 100%;
}

.cellBorder {
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    width: 100%;
}

.cell {
    height: 100%;
    width: 100%;
    opacity: 0;
}