*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background-color: darksalmon;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 100px;
}
.section__title{
    display: flex;
    justify-content: center;
    align-items: center;

}
.container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width:100%;
    max-width: 400px;
}
.label__wrapper{
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}
.label__wrapper input{
    width: 30px;
}
.result__wrapper{
    margin-top: 40px;
    
}
.result__button{
    background-color: aliceblue;
    font-size: 18px;
    font-weight: normal;
    border-width: 1px;
    padding: 3px 3px;
}

.result__button:hover{
    cursor:pointer;
}

