#calc-container{
    display: flex;
    flex-direction: column;

    background-color: lightpink;
    height: 700px;
    width: 500px;
    margin: 30px auto;
    border-radius: 20px;
    padding: 20px;
}

.display{
    box-sizing: border-box;
    background-color: aqua;
    width: 500px;
    height: 100px;
    padding: 10px;
    display: flex;
    /* justify-content: center; */
    align-items: end;
}

.display h1{
    font-family: 'Jersey 10';
    margin: 0;
    margin-left: 10px;
    font-size: 56px;
}

#btn-container{
    border: 2px solid white;
    height: 600px;
    display: flex;
}


.numbers{
    display: flex;
    flex: 2 1 auto;
    flex-wrap: wrap;
}

.operators{
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.buttons{
    flex: 1 1 33.33%;
    font-size: 24px;
    border-radius: 0;
}

#dot{
    flex: 1 2 0;
}

#zero{
    flex: 2 1 auto;
}

#clear{
    margin: 8px 0;
    align-self:flex-start;
    flex: 3 1 10%;
    width: 150px;
}