body {
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
    height: 100vh;
}

/* By default the browser has a default size of buttons and so you must target the buttons */
button {
    font-size: 20px;
    font-weight: bold;
}

button:hover {
    background-color: rgb(255, 196, 0);
}

button:active {
    background-color: rgba(255, 196, 0, 0.411);
}

#calculator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px; /* Adjust the width as needed */
    height: auto; /* Allows the calculator height to adjust based on content */
    padding: 20px; /* Add desired padding */
    background-color: rgba(0, 140, 255, 0.411); /* Add desired background color */
    margin: 10px auto; /* Adjust the margin as needed */
    border-radius: 10px; /* Adjust the border radius as needed */
  }
  


#calculator-display {
    text-align: end;
    width: 90%;
    min-height: 100px;
    font-size: 40px;
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 10px;
    /* allows the input to wrap */
    word-wrap: break-word;
}

#calculator-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 8px;
}

#row-one, #row-two, #row-three, #row-four, #row-five {
    display: flex;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font-size: 16px;
}

#row-one button {
    height: 50px;
    width: 100%;
    border: 2px solid rgb(0, 0, 0);
}

#row-two button, #row-three button, #row-four button, #row-five button {
    height: 50px;
    width: 100%;
    border: 2px solid rgb(0, 0, 0);
}