#worksheetDiv {
    padding: 0.5em;
    border: 1px solid palevioletred;
    border-radius: 5px;
    margin: 1em auto;
    max-width: 600px;

}

#cell{
    width:1em;height:1em;
    border:1px solid lightblue;
}

#resultsSheet {
    padding: 1em;
    border: 1px solid palevioletred;
    border-radius: 5px;
    margin: 1em auto;
    max-width: 600px;
}

#container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 33%);
}

#resContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, 33%);
}

.question {
    border: 2px solid cadetblue;
    border-bottom: 5px solid cadetblue;
    border-right: 3px solid cadetblue;
    padding: 1em 15px 2em 0px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 0px 5px 15px 5px;
    height: fit-content;
    display: grid;
    font-size: larger;

}

#questionNumers {
    width: 6em;
    letter-spacing: 5px;
}

.firstNumber {
    text-align: right;
    justify-self: right;
    grid-column: 1;
    /* margin-top:-1em; */
}

.secondNumber {
    grid-column: 1;
    text-align: right;
    justify-self: right;
    border-bottom: 1px solid black;
}


.operatorLine {
    grid-column: 1;
    text-align: left;
    justify-self: right;
    margin-top: -0.8em;
}

.resultLine {
    margin-top: 5px;
    grid-column: 1;
    text-align: right;
    justify-self: right;
}

.resultsBox {
    border: 2px solid cadetblue;
    border-bottom: 5px solid cadetblue;
    border-right: 3px solid cadetblue;
    padding: 10px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 0px 5px 15px 5px;
    height: fit-content;
    display: grid;
    font-size: larger;
    padding-bottom: 0.5em;
    /* padding-right: 2em; */
}

#logo {
    margin-bottom: 10px;
    border-bottom: 2px solid darkgreen;
    max-width: 100;
}

#instructionsDiv {
    margin: 1em;
}

#btn {
    font-size: large;
    color: white;
    font-weight: bold;
    margin: 10px;
    background-color: cadetblue;
    border-radius: 5px;
    font-size: 17px;
    padding: 6px 18px;
}

@font-face {
    font-family: "SecularOneRegular";
    src: url("resources/css/fonts/SecularOneRegular.ttf");
}

body {
    font-family: "SecularOneRegular";
    font-weight: 100;
}

#options-menu {
    width: fit-content;
    margin: auto;
}

.options {
    margin-bottom: 0.5em;
}

.fractionInput {
    margin-left: 2em;
}

.qNumber {
    font-size: 0.5em;
    margin: 0;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-bottom-right-radius: 5px;
    width: fit-content;
    padding: 2px;

}


.newLine {
    height: 10px;
}


.coinImg {
    padding-right: 5px;
}

.resP {
    float: right;
}

#mainTitleDiv {
    text-align: center;
    text-align: center;
    border-top: 1px solid cadetblue;
    padding: 2px 50px;
    width: fit-content;
    margin: auto;
    /* border-radius: 5px; */
    border-bottom: 1px solid cadetblue;
    margin-bottom: 10px;
}


#secTitleDiv {
    text-align: center;
    padding-bottom: 10px;
}