body, html{
    height: 100vh;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
    color: white;
}
.container{
    background-color: lightblue;
    width: 400px;
    height: 600px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 5px rgb(103, 137, 149);
}
.text{
    display: flex;
    justify-content: center;
    font-size: 20px;
    height: 100px;
}
.input{
    height: 400px;
    display: flex;
    justify-content: space-between;
}
input{
    height: 30px;
    width: 200px;
    background-color: grey;
    border: 2px solid black;
    border-radius: 3px;
    color: white;
}
button{
    height: 36px;
    width: 100px;
    background-color: grey;
    border: 2px solid black;
    border-radius: 3px;
    color: white;
}
button:hover{
    background-color: rgb(93, 93, 93);
}
button:active{
    background-color: grey;
}
.display{
    height: 100px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}