body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    background-color: #ffebd3;
}

h3 {
    margin: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border: solid black 3px;
    padding: 10px;
    background-color: #ffebd3;

}

.calculator {
    display: flex;
    border: solid black 1px;
    max-width: 400px;
    width: 90%;
    height: 600px;
    padding: 25px;
    background-color: #f1b086;
    flex-direction: column;
    border-radius: 15px;
    flex: 1 1 100%;

}

.display-screen {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 180px;
    background-color: #ffebd3;
    border: solid black 1px;
    /* justify-content: right;
    align-items: end; */
    box-sizing: border-box;
    padding: 15px;
    justify-content: space-between;

}

.display {
    display: flex;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 70px;
    justify-content: right;
    align-items: end;
}

.exponents {
    display: flex;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    justify-content: right;
    align-items: end;
}

.mid-buttons {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    height: 80px;
    justify-content: space-between;

}

.clear, .delete {
    display: flex;
    width: 48%;
    height: 70px;
    border: solid black 1px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 25px;
}

.clear {
    background-color: #fbbfbf;
}

.delete {
    background-color: aliceblue;
}

.buttons {
    display: flex;
    height: 300px;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    
}

.button {
    display: flex;
    border: solid black 1px;
    height: 65px;
    width: 22%;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 25px;
    background-color: #ffebd3;
}

.row {
    display: flex;
    justify-content: space-between;
}

.button:hover {
    background-color: #fcddb7
}

.clear:hover {
    background-color: #fca3a3;
}

.delete:hover {
    background-color: rgb(194, 224, 251);
}







