* {
    margin: 0;
    padding: 0;
}

#body {
    background-color: rgb(49, 50, 68)
}

h1 {
    color: white;
    text-size-adjust: auto;
    white-space: nowrap;
    width: 100%;
    overflow: auto;
}

button {
    background-color: rgb(27, 27, 27);
    color: antiquewhite;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    border: none;

}

.reset {
    background-color: rgb(27, 27, 27);
    color: antiquewhite;
    border-radius: 50%;
    width: 6.5rem;
    height: 3rem;
    border: none;

}

.result{
    background-color: rgb(27, 27, 27);
    color: antiquewhite;
    border-radius: 50%;
    width: 6.5rem;
    height: 3rem;
    border: none;
}

#calculator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0c1a21;
}

#display {
    background-color: black;
    width: 15rem;
    height: 3rem;
    margin: 1rem;
    text-align: right;
    word-wrap: break-word;
    border-bottom: solid grey;
    overflow: hidden;
}