* {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: bold;
}

body {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 10%;
    padding-left: 25%;
    padding-right: 25%;
    padding-top: 5%;
    padding-bottom: 5%;
    height: 40vh;

    

    display: grid;
    grid-template-rows: 2fr 9fr 3fr ;
    grid-template-columns: 1fr 1fr;
    overflow-y: none;
    
}

#display {
    grid-row: 1/2;
    grid-column: 1/2;
    border: outset 2px black;
    background-color:aliceblue;
    margin-left: 5px;
    margin-right: 5px;
    box-shadow: rgb(134, 134, 134) 1px 1px;
}

#buttons{
    grid-row: 2/3;
    grid-column: 1/2;
    margin: 5px;
    
}

#button-grid {
    display:grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px; /*change later*/
    height: 100%;
}

#equals{
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.calc-button {
    background-color: aliceblue;
}

#history {
    grid-row: 1/3;
    grid-column: 2/3;
    height: 96.75%;
}

#history-list {
    border: outset 2px black;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    height: 100%;
    p {
        padding: 5px;
        height: 7.5%;
        margin: 0%;
    }
    box-shadow: rgb(134, 134, 134) 1px 1px;
}

#clear-history {
    width: 100%;
    font-weight: lighter;
    margin-top: 5px;
    margin-bottom: 5px;
}

.even {
    background-color: aliceblue;
    color: black;
}

.odd {
    background-color:rgb(62, 62, 70);
    color: white;
}

button {
    border: outset 2px black;
    background-color: aliceblue;
    box-shadow: rgb(62, 62, 70) 1px 1px, rgb(249, 252, 255) -1px 5px;
}

button:hover {
    background-color:rgb(218, 238, 255);
}

button:active {
    background-color: rgb(185, 222, 255)
}