* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: rgb(24, 26, 27);
    font-family: 'Courier New', Courier, monospace;
}
.container {
    height: 800px;
    margin: 20px;
}

.container-title{
    text-align: center;
    color: whitesmoke;
    
}

.container-body{
     
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.container-body-title{

    padding: 20px;
    color: white;
    margin-bottom: 20px;
}

.calculator{
    background-color: rgb(54, 54, 58);
    height: 700px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    border: 1px solid darkorange;
    
}

.calculator button{
    display: flex;
    flex-direction: column;
    padding: 20px;
    font-size: 20px;
}

.calculator-title{ 
    display: flex;
    align-items: center;
    color: white; 
    margin: 20px;
}

.calculator-output-row { 
    width: 300px;
    display: flex;
    align-items: center;
    color: white;
     
}

.calculator-results-row{
    width: 300px;
    display: flex;
    align-items: center;
    color: white;
    border-top: 1px solid white;
}

.calculator-output {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    background-color: darkgoldenrod;
    width: 400px;
    height: 50px;
    color: whitesmoke;
    font-size: 21px;
}

.calculator-results {
    display: flex;
    align-items: center;
    padding-right: 10px;
    justify-content: flex-end;
    background-color: darkgoldenrod;
    width: 400px;
    height: 50px;
    color: whitesmoke;
    font-size: 21px;

}

.calculator-middle{
    display: flex;
    flex-direction: row;
    margin: 20px;
    
    
}



.calculator-middle button{
    margin: 5px;
}

.calculator-bottom {
    display: flex;
    justify-content: flex-end;
     
}

.calculator-bottom button{
    margin: 5px;
}

.calculator-clear{
    margin-top: 10px;
    
}

.calculator-clear button{
    width: 300px;
}

button {
    font-weight: bolder;
    border-radius: 5px;
    border: 1px solid white;
    background-color: darkgoldenrod;
    color: whitesmoke;
}
