*{
    padding: 0;
    margin: 0;
}
body{
    background-color: #585481;
}
.container{
    width: 400px;
    height: 80vh;
    background-color: #A1867F;
    margin:50px auto;
    padding: 20px;
    top: 30%;
    border-radius: 10px;
    text-size-adjust: 80vh;
}
.entry{
    margin-top: 5px;
    padding: 10px 0 4px 0;
    user-select: none;
}
h1{
    margin: 20px auto;
    text-align: center;
    font-size: 30px;
    font-family: monospace;
    color: #220101;
    user-select: none;
}
input{
    width: 100%;
    padding: 10px;
    display: block;
    margin: 5px auto;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    box-sizing: border-box;
}
.result{
 
    display: none;
}
.resultAfter{
    margin: 0 auto;
    max-height: 240px;
    margin-top: 30px;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center ;
    background-color: #19297C;
    color: #ccc;
    font-size: 18px;
    text-align: center;
    font-family: monospace;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    
}
button{
    width: 50%;
    padding: 10px;
    display: block;
    margin: 15px auto;
    border: none;
    outline: none;
    box-sizing: border-box;
    background-color: #220101;
    color: white;
    font-size: 22px;
    font-family: monospace;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
}
#result{
    padding: 10px;
}
@media only screen and (max-width:600px){
    .container{
        margin-top: 0px;
        margin-bottom: 0px;
        width: 100%;
        height: 100vh;
    }
    body{
        background-color: #A1867F;
    }
    .resultAfter{
        margin-top: 100px;
    }
    button{
        margin-top: 100px;
    }
}