* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {

}

.container {
    width: 100%;
    height: 100vh;
    background: #d0ebff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator {
    background: #3a4452;
    padding: 2rem;
    border-radius: 1rem;
}

.calculator form input {
    border: 0;
    outline: 0;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    margin: 1rem;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    box-shadow: -8px -8px 1.5rem rgba(255, 255, 255, .1), 5px 5px 1.5rem rgba(0,0,0, 0.2);
}

form .display {
    display: flex;
    justify-content: flex-end;
    margin: 2rem 0;
}

form .display input {
    text-align: right;
    flex: 1;
}

form .display input {
    text-align: right;
    flex: 1;
    font-size: 4.5rem;
    box-shadow: none;
}

form input.input-equal {
    width: 14.5rem;
}

form input.operator {
    color: #69db7c;
}
