* {
    outline: none;

}

button {
    appearance: button;
}

p {
    font-size: 20px;
}

.wrapperIndexPage {
    height: 75vh;
    margin: 0px;
    display: grid;
    grid-template-areas: 
    "h h h"
    "r r r"
    "f f f";
    grid-template-rows: 5% 95%;
    grid-template-columns: repeat(auto-fill), repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: row;
}

@media screen and (max-width: 800px) {
    .wrapperIndexPage {
        max-height: 50vh;
        margin: 0px;
        display: grid;
        grid-template-areas: 
        "h"
        "r"
        "r"
        "r"
        "f";
        grid-template-rows: min-content;
        grid-template-columns: repeat(auto-fill), repeat(3, 1fr);
        grid-auto-rows: auto;
        grid-auto-flow: row;
    }
    button {
        width: 75%;justify-self: center;
    };
}

.wrapper {
    height: 100vh;
    margin: 0px;
    display: grid;
    grid-template-columns: repeat(auto-fill), repeat(12, 1fr);
    grid-auto-rows: minmax(10px, auto);
    grid-template-areas: 
    "h h h h h h h h h h h h"
    "c c c c c c c c c c c c"
    "f f f f f f f f f f f f";
    grid-template-rows: min-content auto min-content;
    grid-auto-flow: row;
}

.urlWrapper {
    height: 100vh;
    margin: 0px;
    display: grid;
    grid-template-columns: repeat(auto-fill), repeat(12, 1fr);
    grid-auto-rows: minmax(10px, auto);
    grid-template-areas: 
    "h h h h h h h h h h h h"
    "a a a a a a a a a a a a"
    "c c c c c c c c c c c s"
    "f f f f f f f f f f f s";
    grid-template-rows: min-content min-content auto min-content;
    grid-auto-flow: row;
}

.urlAbar {
    grid-area: a;
    justify-self: center;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.urlContent {
    grid-area: c;
    height: 90vh;
}

.urlOutput {
    display: block;
    margin: 0px;
    margin-left: 10px;
    border-style: solid solid solid solid;
    background-color: #FFFFFF;
    box-sizing: border-box;
    font-size: 20px;
    white-space: pre-wrap;
    width: 55vw;
    overflow-y: auto;
    height: calc(100vh - 35%);
    resize: both;
}

.sideBar {
    grid-area: s;
    width: 40vw;
}

#addressBar {
    width: auto;
}

.header {
    margin: 0px;
    padding: 0px;
    height: 45px;
    grid-area: h;
    display: grid;
    justify-content: center;
    position: sticky;
    top: 0px;
    background-color: #303030;

}
nav {
    height: 40px;
}
.footer {
    padding-left: 12%;
    padding-right: 12%;
    display: grid;
    grid-area: f;
}

.content {
    justify-self: center;
    width: calc(100vw - 18%);
    text-align: center;
    grid-area: c;
}
.leftAlignedText {
    text-align: left;
}
.rightAlignedText {
    text-align: right;
}
.menu {
    grid-area: m;
}

@media screen and (max-width: 800px) {
    
}

.inputTextarea {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-style: solid solid solid solid;
    background-color: #FFFFFF;
    box-sizing: border-box;
    font-size: 20px;
    white-space: pre-wrap;
    width: calc(100vw - 20%);
    overflow-y: auto;
    height: calc(100vh - 35%);
    resize: both;
}

#scoreModal {
    border-radius: 20px;
    border-radius: 0.6rem;
    box-shadow: 0 0 1em black;
}

#scoreModal::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
}

#submissionbutton {
    font-size: 25px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}

table, th, td {
    border-collapse: collapse;
    border: 0px;
    border-radius: 2px;
}
td {
    text-align: left;
}
body {
    margin: 0px;
    padding: 0px;
}

@keyframes spinner {
    to {transform: rotate(360deg);}
  }
   
.spinner:before {
    position: sticky;
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #333;
    animation: spinner .3s linear infinite;
}
.navbarstyle {
    border-radius: 0px;
    color: #212121;
    font-size: 18px;
    border: 0;
    padding: 5px 5px 5px 5px;
    cursor:pointer;
    text-decoration: none;
}

section {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid #ddd;
}
  
input.dspnone {
    display: none;
}

label {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 15px 25px;
    font-weight: 600;
    text-align: center;
    color: #bbb;
    border: 1px solid transparent;
}
  
  
input:checked + label {
    color: #555;
    border: 1px solid #ddd;
    border-top: 2px solid #262626;
    border-bottom: 0px;
}
  
label:hover {
    color: #888;
    cursor: pointer;
}

#tab1:checked ~ #tgrade,
#tab2:checked ~ #tstats,
#tab3:checked ~ #tdownload,
#tab4:checked ~ #content4 {
    display: block;
}

tr:nth-child(even) {
    background-color: #F0E9EB;
}

img.buttonImg {
    width: 75%;
    height: 75%;
    padding: 0%;
    margin: 0%;
}

@media screen and (max-width: 650px) {
    label {
        font-size: 0;
    }
    label:before {
        margin: 0;
        font-size: 18px;
    }
}
  
@media screen and (max-width: 400px) {
    label {
        padding: 15px;
    }
}

.buttonSpan {
    width: 50%;
    height: 50%;
    font-size: 96px;

}

.invert100 {
    filter: invert(100%);
}

.invert100 {
    filter: invert(100%);
}

.requiredNotices {
    border-collapse: separate;
    border-spacing: 25px;
    margin-left:auto; 
    margin-right:auto;
}

.pStyledSpan {
    display: block;
    padding: 0%;
    margin: 0%;
    font-weight:bold;
    font-size: 2rem;
}


/*Rules for sizing the icon*/
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
.material-icons.md-96 { font-size: 96px; }

.required::before {
    content:"*"; color: red;
}
