/* Style here */
.body {
    font-family: "VT323", monospace;
}
/* Container */
.calculator-div { 
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.calculator-background {
    background-color: rgb(31, 31, 31); /* Example background color */
    padding: 20px;
    border-radius: 20px;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:4px;
    box-shadow: inset 4px 4px 5px rgb(57, 57, 57); 
    margin-top: -100px;
}
.horizontal-container {
    height: 100px;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 380px;
    height: 380px;
    gap: 10px;
    margin-right: 10px;
}
.vertical-div {
    height: 380px;
    width: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.operations-container {
    height: 380px;
    width: 500px;
    display: flex;
    margin-top: 5px;
}
/* Screens and the icons present(+,-,etc) */
.screen {
    background-color: rgb(246, 72, 246);
    width: 500px;
    height: 150px;
    display: flex;
    justify-content: right;
    align-items: last baseline; 
    font-size: 100px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 0px;
    border-radius: 10px;
    caret-color: transparent;
}
.icons {
    display: flex;
    font-size: 20px;
    gap: 20px;
    margin-top: -20px;
    margin-bottom: -20px;
    font-weight: bolder;
    caret-color: transparent;
}
.biggerscreen {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(246, 72, 246);
    border-radius: 10px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}
/* Buttons */
.clearbutton {
    height: 100px;
    width: 240px;
    border-style: solid;
    border-radius: 10px;
    border-width: 0px;
    background-color: rgb(61, 61, 61);
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    caret-color: transparent;
    font-size: 28px;
}
.upperoperations-btn {
    height: 100px;
    width: 120px;
    border-style: solid;
    border-radius: 10px;
    border-width: 0px;
    background-color: rgb(61, 61, 61);
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    caret-color: transparent;
    font-size: 28px;
}
.operations-btn {
    height: 96px; /* same height as operations-btn */
    width: 120px;
    border-style: solid;
    border-radius: 10px;
    border-width: 0px;
    background-color: rgb(61, 61, 61);
    color: white;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    font-size: 28px;
}
.num-btn {  
    border-style: solid;
    border-radius: 10px;
    border-width: 0px;
    background-color: rgb(61, 61, 61);
    color: white;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    caret-color: transparent;
    font-size: 28px;
}
/* Effects for buttons */
.num-btn:hover {
    background-color:  rgb(41, 41, 41);
}

.operations-btn.tint {
    background-color: rgb(0, 148, 148);
}
.operations-btn.tint:hover {
    background-color:  rgb(0, 104, 104);
}
.operations-btn.bluetint {
    background-color: rgb(0, 202, 202);
}
.operations-btn.bluetint:hover {
    background-color:  rgb(0, 104, 104);
}
.clearbutton.bluetint {
    background-color: rgb(0, 202, 202);
}
.upperoperations-btn.tint {
    background-color:  rgb(0, 148, 148);
}
.upperoperations-btn.tint:hover {
    background-color:  rgb(0, 104, 104);
}
.clearbutton.bluetint:hover {
    background-color: rgb(0, 148, 148);
}
.clearbutton.bluetint:active {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.operations-btn.bluetint:active {
     box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5); 
}
.num-btn:active {
    box-shadow: inset 2px 2px 5px rgba(24, 24, 24, 0.5); 
}
.upperoperations-btn.tint:active {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5); 
}
.operations-btn.tint:active {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5); 
}
.vt323-regular {
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
  }
  