@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap');
*{
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}
body{
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.app{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.thap{
    margin: 0;
    padding: 0;
    min-width: 300px;
    display: block;
    position: relative;
    height: 300px;
    transition: 0.6s;
}
.vong{
    position: absolute;
    margin: 0;
    padding: 0;
    display: block;
    width: calc(var(--i)*30px);
    height: 20px;
    background: black;
    bottom: calc(var(--j)*20px);
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
    border-radius: 2px;
}
.move{
    margin: 0 auto;
    position: relative;
    width: 250px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    top: 50px;
    z-index: 100;
    background: rgb(255, 255, 255,0.5);
    border: 2px solid;
    backdrop-filter: blur(2px);
    user-select: none;
}
.text{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.select{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.select *{
    cursor: pointer;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
    border-radius: 100px;
}
.select *:hover{
    border: 2px solid #000;
}
form{
    margin: 0 auto;
    margin-top: 50px;
}
input{
    width: 20px;
    height: 20px;
}