@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&family=Roboto:wght@400;700&display=swap");

*,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Quicksand", "Roboto", sans-serif;
}

.grid {
    width: 30%;
    height: 500px;
    margin-left: 35%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 10px 10px;
    background-color: rgb(54, 54, 54);
    padding: 20px;
    border-radius: 10px;
}

@media only screen and (max-width: 768px) {
    .grid {
        width: 80%;
        margin-left: 5%;
    }
}

#display {
    grid-area: 1 / 1 / 2 / 5;
    width: 100%;
    height: 100%;
    background-color: rgb(142, 180, 180);
    color: white;
    font-size: 50px;
    text-align: right;
    border-radius: 5px;
}

button {
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
}

#clear {
    grid-area: 2 / 1 / 3 / 3;
}

#delete {
    grid-area: 2 / 3 / 3 / 5;
}
