@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: "JetBrains Mono", monospace;
}

body {
    background-color: #F0E7DA;
    display: flex;
    justify-content: space-between;
    height: 100vh;
    align-items: center;
}

button {
    background-color: #F0E7DA;
    border: 2px solid white;
    font-family: "JetBrains Mono", monospace;
    font-weight: bolder;
    font-size: 30px;
}

.cabecalho input, .corpo button, .operacoes button, .tema button {
    width: 100%;
    box-sizing: border-box;
    height: 12vh;
    border-radius: 10px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
}

.cabecalho input {
    margin-bottom: 2vh;
    border-radius: 30px 30px 10px 10px;
    border: 2px solid black;
    font-family: "JetBrains Mono", monospace;
    font-size: 30px;
    padding: 20px;
    font-weight: bolder;
}

.corpo div {
    display: flex;
    gap: 2vh;
}

.corpo button {
    flex: 1;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.corpo button:hover, .operacoes button:hover {
    background-color: #ffffff;
    border: 2px solid black;
}

.corpo button:active, .operacoes button:active {
    background-color: rgb(27, 27, 27);
    color: white;
    border: 2px solid white;
}

.corpo {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

main {
    flex: 0 0 52%;
}

.operacoes {
    display: flex;
    justify-content: space-between;
    padding: 20px 80px;
}

.operacoes button {
    border-radius: 100%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.principal {
    margin: auto;
}

.zero {
    border-radius: 10px 10px 10px 30px !important;
}

.ponto {
    border-radius: 10px 10px 30px 10px !important;
}

.opcoes {
    display: flex;
    flex-direction: column;
    gap: 3vh;
    padding: 50px;
    padding-top: 15px;
}

.opcoes button {
    border-radius: 100%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
    color: white;
    border: 5px solid white;
}

.apagar {
    background-color: rgb(252, 41, 87);
}

.opcoes button:hover {
    border-radius: 30px !important;
    width: 150px;
}

.limpar {
    background-color:rgb(60, 60, 60);
}

.igual {
    background-image: linear-gradient(to bottom, #0057FF, #003499);
}

.tema, .opcoes {
    flex: 1;
}

.tema button {
    width: 40%;
    height: 5%;
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    background-color: #404040;
    color: white;
    margin-left: 90px;
    margin-top: 25px;
}

.tema button:hover {
    background-color: black;
    border: 2px solid white;
}

.tema button:active {
    background-color: #fbf2e6;
    color: black;
    border: 2px solid black;
}