/* GENERAL */
body {
    margin: 0;
}

.bg {
    width: 100%;
    height: 100vh;
    background-color: lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainContainer {
    position: fixed;
    width: 80%;
    height: 70%;
    background-color: lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calContaininer {
    width: 330px;
    background: gray;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 10px;
    border: 2px solid;
    padding: 1em;
    padding-top: 2em;
}

/* SCREEN*/
.screen {
    width: 90%;
    grid-column: 1 / -1;
    background-color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    flex-direction: column;
    word-wrap: break-word;
    word-break: break-all;
    border: 1px solid;
    border-radius: 10px;
    text-align: right;
}

#screenLast {
    display: flex;
    min-height: 30px;
    font-size: 1.5rem;
    align-items: center;
    padding: 10px;
    padding-bottom: 0px;
}

#screenCurrent {
    display: flex;
    min-height: 60px;
    font-size: 2.5rem;
    align-items: center;
    padding: 10px;
    padding-top: 0px;
}

/* OPTIONS */
.buttonsContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    width: 90%;
    height: 75%;
    padding: 1em;
    word-wrap: break-word;
    word-break: break-all;
}

#clearBttn {
    appearance: none;
    background-color: #2e92a4;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    grid-column: span 2;
    padding: 15px;
}

#deleteBttn {
    appearance: none;
    background-color: #f38a8a;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    grid-column: span 2;
    padding: 15px;
}

.bttn {
    padding: 15px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .6);
    border-radius: 4px;
}





