body {
    text-align: center;
    align-content: center;
    height: 90vh;
    background-color: rgb(53, 3, 3);
}

.portion {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
}

.calculator {
    background-color: black;
    border: 6px solid black; 
    border-radius: 15px;
    height: 70vh;
    width: 25vw;
}

.output {
    width: 100%;
    height: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innerOutput {
    text-align: end;
    position: relative;
    font-family: sans-serif;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 6px;
    width: 90%;
    height: 60%;
    background-color: rgb(10, 10, 10);
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65%;
}

.innerButtons {
    width: 90%;
    height: 90%;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, auto);
}

button {
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: large;
    cursor: pointer;

}

button:active {
    transform: translateY(1px);
}

.light-gray {
    background-color: #A9A9A9;
}

.orange {
    background-color: orange;
}

.dark-gray {
    background-color: gray;
}

/* p{
    font-family: sans-serif;
    width: 22%;
    text-align: end;
    margin-top: 2.8%;
    float: right;
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 40px;
} */