*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html{
    background-color:rgb(226, 213, 226);
    display: flex;
    justify-content: center;
}
.container{
    margin: 2rem;
    display: flex;
    flex-direction: column;
    width: 600px;
    height: 600px;
    border-radius: .5rem;
    border-bottom-right-radius: 15rem;
    border: 2px solid rgb(12, 11, 8);
    background-color: aliceblue;
}
.container .input{
    display: flex;
    justify-content: space-evenly;
    margin-top: 2rem;
    margin-left: 2rem;
    width: 500px;
}
.container form{
    display: flex;
    flex-direction: column;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: bold;
}
.container input{
    height: 40px;
    width: 150px;
    margin: .1rem;
    border-radius: .3rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: monospace;
}
.grid2{
    display: flex;
    align-items: center;
    margin-top: .9rem;
}
.grid2 .line{
    border: 1px solid;
    width: 90%;
    height: 1px;
}
.button{
    width: 50px;
    height: 50px;
    margin-top: .5rem;
    border-radius: 50%;
    background-color: purple;
    padding: .4rem;
}
.display{
    font-size: 6rem;
    font-style: italic;
    font-weight: bolder;
}
#displayAge{
    margin-top: 2rem;

}