#container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 300px;
    height: 500px;
    border: 2px solid black;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

#display {
    width: 100%;
    height: 60px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: end;
    border-radius: 10px;
    background-color: rgb(236, 231, 231);
    padding-right: 5px;
}

#buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

button {
    width: 67.5px;
    height: 40px;
    background-color: rgb(236, 231, 231);
    border-radius: 10px;
    border: none;
}

.large {
    width: 145px;
}

.operator,
#equal {
    background-color: orange;
}

#clear,
#del {
    background-color: black;
    color: white;
}

.signature {
    font-family: "UnifrakturCook", cursive;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    font-size: 30px;
    margin-top: auto;
}

.hover:hover{
    background-color: white;
    border: 1px solid black;
}

#clear:hover {
    border: 1px solid orange;
    color: orange;
}

#del:hover {
    border: 1px solid orange;
    color: orange;
}