main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    background-color: #29335a;
}
body {
    margin: 0;
}
#titleDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 15%;
    background-color: #f1d56c;
    font-size: 5vmax;
    color: #6c88f1;
    text-shadow: 1px 2px #1b223c;
    font-family: "Orbitron", sans-serif;
}

#calculator {
    margin-top: 10vh;
    display: grid;
    background-color: #1b223c;
    width: 20vmax;
    height: 25vmax;
    grid-template-rows: 1fr 3fr;
    border-top: solid 20px #1b223c;
    border-bottom: solid 15px #1b223c;
    border-left: solid 15px #1b223c;
    border-right: solid 15px #1b223c;
    border-radius: 4px;
}

#calcDisplayContainer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: #364478;
    font-size: 3vmax;
    color: #f1d56c;
    text-shadow: 0px 0px 8px rgba(241, 108, 203, 1);
    font-family: "Orbitron", sans-serif;
    overflow: hidden;
    border: solid 1px #5f77d3;
    border-radius: 4px;
    height: 100%;
}
#calcDisplay {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: #364478;
}

#calcButtonContainer {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    justify-content: stretch;
    width: 100%;
    height: 100%;
    grid-row: 2;
    background-color: #364478;
}

.calcButtonNumber {
    text-decoration: none;
    font-size: 2vmax;
    color: #f1d56c;
    text-shadow: 0px 0px 5px rgba(241, 108, 203, 1);
    background-color: #6c88f1;
    border: solid 1px #5f77d3;
    border-radius: 4px;
    outline: none;
    font-family: "Orbitron", sans-serif;
    transition: all 0.07s ease;
}

.hoveredNumber {
    text-decoration: none;
    font-size: 2vmax;
    color: #f1d56c;
    text-shadow: 0px 0px 5px rgba(241, 108, 203, 1);
    background-color: #5f77d3;
    border: solid 1px #5f77d3;
    border-radius: 4px;
    outline: none;
    font-family: "Orbitron", sans-serif;
    transition: all 0.07s ease;
}
.calcButtonOperator {
    text-decoration: none;
    font-size: 2vmax;
    color: #6cf193;
    text-shadow: 0px 0px 5px rgba(241, 108, 202, 1);
    background-color: #6c88f1;
    border: solid 1px #5f77d3;
    border-radius: 4px;
    outline: none;
    font-family: "Orbitron", sans-serif;
    transition: all 0.07s ease;
}

.hoveredOperator {
    text-decoration: none;
    font-size: 2vmax;
    color: #6cf193;
    text-shadow: 0px 0px 5px rgba(241, 108, 202, 1);
    background-color: #5f77d3;
    border: solid 1px #5f77d3;
    border-radius: 4px;
    outline: none;
    font-family: "Orbitron", sans-serif;
    transition: all 0.07s ease;
}

.calcButtonClear {
    text-decoration: none;
    font-size: 2vmax;
    color: #f16ccb;
    text-shadow: 0px 0px 5px rgba(108, 241, 147, 1);
    background-color: #6c88f1;
    border: solid 1px #5f77d3;
    border-radius: 4px;
    outline: none;
    font-family: "Orbitron", sans-serif;
    transition: all 0.07s ease;
}

.clearButtonHover {
    text-decoration: none;
    font-size: 2vmax;
    color: #f16ccb;
    text-shadow: 0px 0px 5px rgba(108, 241, 147, 1);
    background-color: #5f77d3;
    border: solid 1px #5f77d3;
    border-radius: 4px;
    outline: none;
    font-family: "Orbitron", sans-serif;
    transition: all 0.07s ease;
}
.calcButtonEquals {
    text-decoration: none;
    font-size: 2vmax;
    color: #6cf193;
    text-shadow: 0px 0px 5px rgba(241, 108, 203, 1);
    background-color: #6c88f1;
    border: solid 1px #5f77d3;
    border-radius: 4px;
    outline: none;
    font-family: "Orbitron", sans-serif;
    transition: all 0.07s ease;
}

#viewSrcText {
    margin-top: 10vh;
    font-size: 1.3vmax;
}
a {
    color: #f1d56c;
    font-family: "Orbitron", sans-serif;
    text-shadow: 0px 0px 5px rgba(241, 108, 203, 1);
}
