body{
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_container{
    max-width: 500px;
    height: 50vh;
    background-color: rgb(201, 214, 201);
}
.container{
   
  margin: 17px;
  height: 48vh;

}
 h3{
    display: flex;
    justify-content: center;

}
input{
    width: 100%;
    height: 30px;
    border-radius: 10px;
    outline: none;
    font-size: 20px;
    border: none;
    
}
input:active{
    border: 1px solid blue;
    outline: blue;
}

  

.flex_ko_lagi{
    display: flex;
     width: 100%;
}
select,button{
    width: 100%;
    height: 32px;
    border-radius: 10px;
    outline: none;
}
button{
    background-color: rgb(78, 255, 78);
    cursor: pointer;
    transition: 0.5s all ease;
    font-weight: bolder;
    
}

button:hover{
    color: rgb(13, 55, 209);
}
button:active{
    transform: scale(0.85);
}