* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Red Rose', cursive;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(228, 210, 228);
}

.calculator {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    grid-template-rows: minmax(120px, auto) repeat(5, 100px);
}

.screen {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    background: rgb(192,192,192);
    word-wrap: break-word;
    word-break: break-all;
    grid-area: 1/1/2/span 4;
    padding: 10px;
    color: white;
    font-size: 3rem;

}

.output1 {
    font-size: 3.5rem;
}

button {
    outline: none;
    border: 1px solid rgb(192,192,192);
    user-select: none;
    cursor: pointer;
    font-size: 1.8rem;
}

button {background: white;}

.equal {grid-area: 6/3/7/5;}

.allclear {grid-area: 2/1/3/3;}

.del {grid-area: 2/3/3/4;}

.operators { grid-area: 2/4/6/5;}

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

.operators .btn {
    flex: 1
}
