*, *::after, *::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
}
body{

    background: linear-gradient(to right, rgb(255, 255, 255)-60%, rgba(208, 155, 180, 0.911)
    );
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.container{
    margin-bottom: 2rem;
    background-color: rgb(130, 194, 169) ;
    overflow: hidden;
    height: 38rem;
    width: 26rem;
    border-radius: 15px;
    border-left: 4px solid rgba(238, 237, 237, 0.585);
    border-right: 4px solid rgba(0, 0, 0, 0.783);
    box-shadow: 20px 10px 15px 10px rgba(0, 0, 0, 0.566),
    inset 15px 15px 10px rgba(255, 255, 255, 0.43),
    -15px -15px 35px rgba(255, 255, 255, 0.268),
    inset -1px -1px 5px  rgba(0,0,0, 9.9),
    inset 10px 10px 5px rgba(237, 239, 243, 0.467); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.buttons_area{
    margin-bottom: 2rem;
}
.row1, .row2, .row3, .row4, .bottomRow{
    display: flex;
    flex-direction: row;

}

button{
    transition: 200ms ease-in-out;
    overflow: hidden;
    font-size: 1.5rem;
    background-color: rgb(130, 194, 169);
    font-weight: 600;
    width: 4rem;
    height: 4rem;
    margin: .3rem;
    text-align: center;
    border-radius: 50% ;
    border: 3px solid rgba(255, 255, 255, 0.1);
    color: rgb(220, 217, 217);
    box-shadow: -5px -5px 15px rgb(255, 255, 255,.2),
    15px 15px 15px rgba(0, 0, 0, 0.1),
    inset -1px -1px 10px rgb(255, 255, 255,.2),
    inset 15px 15px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;

}

.whiteShadow{
    background-color: rgba(206, 232, 222, 0.362);
    border: 2px solid rgba(255, 255, 255, 0.227);
    color: white;
    

}
#del{

    font-size: 1.5rem;
    padding: 0rem;
}
.btnShadow{
    box-shadow:none;
}

.bigger_btn{
    width: 8.3rem;
    border-radius: 20px;
    padding: 1rem;
}

.output{
    border-radius: 10px;
    border: 4px solid rgba(255, 255, 255, 0.096);
    width: 30rem;
    padding: 0rem 1.8rem;
    margin-bottom: 1rem;
    height: 13rem;
    color: white;
    overflow: hidden;
    background: linear-gradient(to right, rgba(3, 3, 44, 0.797), rgba(0, 0, 0, 0.836));

}




.process{
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    justify-content: center;
    min-height: 50px;
    padding: .5rem 1.5rem;
    margin: 1rem 0rem;
    font-weight: 600;
    word-wrap: break-word;
    word-break: break-all;
    

}

.results{
    color: rgba(255, 255, 255, 0.9);
    width: 20rem;
    margin-left: 3.5rem;
    font-size: 3.5rem;
    display: flex;
    justify-content: end;
    padding: 0rem 1rem rem 0rem;
    font-weight: 600;
    word-wrap: break-word;
    word-break: break-all;
    line-height: 10rem;
    
}


@media (orientation: landscape)and (max-height: 600px){
    .container{
        overflow: scroll;
        display: flex;
        flex-direction: row;
        margin-bottom: 3rem;
        width: 45rem;
        height: 21rem;
        justify-content: space-around;
    }
    .output{
        width: 20rem;
        height: 12rem;
    }

.process{
    font-size: 1rem;
    color: rgba(162, 160, 160, 0.75);
    display: flex;
    justify-content: center;
    min-height: 50px;
    padding: 0rem 0rem;
    margin: 1rem 0rem 1rem 5rem;
    font-weight: 600;
    word-wrap: break-word;
    word-break: break-all;
    

}

.results{
    color: rgba(255, 255, 255, 0.9);
    width: 20rem;
    font-size: 3.5rem;
    display: flex;
    text-align: left;
    justify-content: center;
    padding-right: 5rem;
    font-weight: 600;
    word-wrap: break-word;
    word-break: break-all;
    line-height: 8rem;
    
}
.buttons_area{
    margin-top: 1.5rem;
}
button{
    width: 3rem;
    font-size: 1.2rem;
    height: 3rem;
}
.bigger_btn{
    font-size: 1.2;
    text-align: center;
    padding: 1rem 0rem 2rem;
    width: 7rem;
}
#del{
    font-size: 1.2rem;
}
}