*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    color:#FCD34D;
}
.app {
    width: 550px;
    margin: 2px auto;
    border: 4px solid #FDE68A;
    border-radius: 20px;
    background-color: #FDE68A;
    
}
.header-body h1{
        margin: 0;
        text-align: center;
        }
.header-body{
    height: 285px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background: #F43F5E;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px;
    border: 5px solid #FDE68A;
}

.controls { display: flex; flex-direction: column; gap: 12px; }

#input {
    width: 117px;
    height: 83px;
    text-indent: 45px;
    color:#047857;
    border-radius: 20px;
    border: 4px solid #34D399;
    background-color: #FECDD3;
}

#input [type="text"]{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#convert-btn {
     width: 117px;
     height: 42px;
     border-radius: 20px;
     background-color: #FDE68A;
     border: 4px solid #A7F3D0;
     font-family: Arial, Helvetica, sans-serif;
     color:#F43F5E;
     
}
.results {
    width: 550px;
    height: 444px;
    margin: 0 auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-sizing: border-box;
}
.section {
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
    background-color: #FECDD3;
    border: 4px solid #A7F3D0;
    border-radius: 20px;
    font-family: Arial, Helvetica, sans-serif;
    padding: none;
    color:#F43F5E;
    overflow: hidden;
    box-sizing: border-box;
    }
    .section h3{
        font-family: Arial, Helvetica, sans-serif;
        color:#34D399;
        margin-bottom: 0px;
        margin-top: 16px;
       
    }
   .section
