@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Silkscreen:wght@400;700&display=swap');

body {
    background-color: #121212;
    color: #F9FAF8;
    height: calc(100vh - 16px);
    display:flex;
    justify-content: center;
    align-items: center;
}

.calc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #332940;
    padding: 7.5px;
    gap: 10px;
    height: 400px;
    width: 300px;
    border-radius: 20px;
    box-shadow: 7px 7px black;
}

.screen {
    display:flex;
    flex-grow: 0;
    font-size: 2rem;
    font-family: 'Silkscreen', sans-serif;
    width: 95%;
    height: 25%;
    background-color: #121212;
    color: white;
    border: none;
    border-radius: 16px;
    padding: 0.5rem;
    text-align: end;
}

.btns {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 5%;
    flex-wrap: wrap;
}

.numperator {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    font-family: "Comfortaa", sans-serif;
    font-size: 1.5rem;
    background-color: #332940;
    height: 15%;
    width: 20%;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.numbah {
    color:white;
}

.ac {
    color: red;
}

.operands {
    color:lime;
}

.equalto {
    background-color: lime;
    color: white;
}

.numperator:active {
    background-color: #c0c0c0;
}

.clear {
    cursor: default;
}

.clear:active {
    background-color: #332940;
}