@charset "UTF-8";
/* CSS Document */

.cell {
    display: flex;
    flex-direction: column;

    width: 14vw;
    aspect-ratio: 1 / 1;
    position: relative;
    
    min-width: 3vw; /* Example minimum size */
    min-height: 3vw;

    align-items: center;
    justify-content: center;

    border: 0.25vw solid black;
    background-color: lightgoldenrodyellow;
}

.cell:first-child {
    margin-left: 0;
}

.cell:last-child {
    margin-right: 0;
}

.hiraganaSpan {
    min-width: 13vw; /* Example minimum size */
    min-height: 13vw;
    aspect-ratio: 1 / 1;

    align-self: center;
    position: absolute;

    text-align: center;
    font-size: 9vw;
    /*border: 0.25vw solid black;*/
    /*background-color:greenyellow;*/
    
    z-index: 8;
}

.transliterationSpan {
    display: none;
    min-width: 3vw;
    min-height: 3vw;

    width: 5vw;
    aspect-ratio: 1 / 1;

    position: absolute;
    top: 10.5vw; /* Y */
    left: 5vw; /* X */

    bottom: 0;
    margin-left: auto;
    margin-right: auto;

    font-size: 3.5vw;
    color: black;

    /*border: 0.25vw solid black;*/
    /*background-color: aqua;*/
    
    z-index: 10;
}



