* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
    overflow: hidden;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 5px;
    padding: 5px;
    background-color: #1a1a1a;
    width: 100vw;
    height: 100vh;
}

.square {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transition: background-color 0.5s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    line-height: 1;
}

.square span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transform: scale(1.4);
}

.square span.unicorn {
    transform: scale(2.0);
    color: white;
}

@media (max-width: 800px) {
    .grid-container {
        gap: 3px;
        padding: 3px;
    }
    .square {
        border-radius: 3px;
        font-size: 7vw;
    }
}

@media (max-aspect-ratio: 1/1) {
    .grid-container {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(12, 1fr);
    }

    .square {
        font-size: 8vw;
    }

    .square span.unicorn {
        transform: scale(2.2);
    }
} 