body{
    font-size:100vw;
    font-family: 'Roboto', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: black;
    color:white;
    display: flex;
    flex-direction: column;
    
}


.container{
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.card{
    max-height: 20vh;
    max-width: 10vw;
    min-width: 15vw;
    border-radius: 2px;
    border-color:white;
    border-style: solid;
    border-radius:15px;
    display:flex;
    justify-content: center;
}


.card-content{
    margin : 2vh;
    display: flex;
    flex-direction: column;
  
}

.as{
    margin: 0px;
}

.kanji{
    font-size:5vh ;
    margin: 0px;
}

.kanji-input{
    max-width: 10vw;
    min-width: 5vw;
    color:white;
    background-color: transparent;
    border: 2px solid #ffff;
    border-radius:20px;
    padding: 0.10rem 0.25rem;
    /* font-size:3vh; */

}
.input-wrapper{
    display:flex;
    justify-content: center;
}

.card.correct{
    border-color: greenyellow;
}
.card.incorrect{
    border-color: red;
}

.level-selector{
    margin: 0px;
}

.head-container{
    margin: 10px 20px;
    max-height: 10vh;
    display: flex;
    flex-direction: column;
}
.head-sep{
    display: flex;
}

.input-type-container {
    max-width: 20vh;
    /* border: #ffff solid 1px; */
    display: flex;
    /* font-size: 1em; */
}

.input-type{
    display: flex;
    border: #ffff solid 1px;
    color: #ffff;
    max-width: 20vw;
    min-width: 20vw;
    font-size: 0.7rem;
    margin: 5px 10px;
}

/* .card.correct */