*{
    font-family: 'Boogaloo', cursive;
    font-family: 'Mochiy Pop P One', sans-serif;
    font-family: 'Press Start 2P', cursive;
    font-family: 'Righteous', cursive;
    font-family: 'Roboto', sans-serif;
    font-family: 'Supermercado One', cursive;
    font-family: 'Zen Kurenaido', sans-serif;
    margin: 0;
    padding: 0;
}

/* body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
} */

.calcContainer{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.operator{
    background-color: rgb(255, 212, 133);
}

#container{
    border: 3px solid black;
    border-radius: 24px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: rgb(221, 221, 221);
    box-shadow: rgb(0 0 0 / 24%) 0px 5px 16px;
}

.clear{
    flex-grow: 1;
    background-color: rgb(255, 148, 148);
}


.buttons{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 15px;
    gap: 15px;
}

button{
    margin-left: 5px;
    margin-right: 5px;
    width: 85px;
    height: 60px;
    font-size: 32px;
    font-weight: bolder;
    border-radius: 15px;
    border: 3px black solid;
    background-color: rgb(224, 240, 255);
}

.equals{
    flex-grow: 1;
}

.display{
    border: 3px black solid;
    border-radius: 5px;
    padding: 10px;
    padding-right: 20px;
    text-align: right;
    font-size: 32px;
    background-color: white;
    font-weight: bolder;
    flex-grow: 1;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    max-width: 100%;

}

.memory{
    font-size: 28px;
    color: rgb(161, 161, 161);
}

.topPart{
    display: flex;
    flex-direction: row;
    flex-direction: column;
    gap: 5px;
}

.clearButton{
    display: flex;
    flex-direction: row;
}

.screen{
    font-size: 55px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

footer{
    font-size: 26px;
    bottom: 0;
    position: absolute;
    text-align: center;
    margin: 15px;
}

.fa-github {
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
    color: black;
    text-decoration: none;
  }

.fa-github:hover {
    transform: rotate(360deg) scale(1.2);
  }

