body{
   
    background-color:#000;
}

.main{
 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: 17.5vh;
    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;
  
}

.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;
}

.as{
    margin: 0px;
}
/* 
nav{
   display: flex;
   justify-content: center; 
   margin-left:20px ;
}


.navbar {
  background-color: black;
  border-bottom: 1px solid white;
  padding: 10px 0;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  max-width: 80%;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.navbar ul li a {
    font-size: 2vw;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar ul li a:hover {
  text-decoration: underline;
} */

@media (min-width:720px ) {
    .container{

        max-width: 70vw;
       
    }
    .main{
    
    }
    .wrapper{
            max-width: 90vw;
         display: flex;
        justify-content: center;
    }
    .as{
        font-size: 1vw;
    }
}
