
/***********************************Headings/Footer/Body******************************/
h1,h2 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: #120D18;  
    margin: 0 0 0 3px;
} header, footer {
    width: 100%;
    background-color:#9BDBE8;          
    display: flex;
    align-items: center;
    justify-content: center;
} footer{
    border-width: 5px 0px 0px;
    border-style: groove;
    border-color: #383A3C;
} header img {
    width: 110px;
    height: auto;
} .headings {
    display: flex;
    flex-direction: column;
    color: #120D18;
    text-shadow: 5px 0 #9BDBE8;
}  .text-addons {
    color: #383A3C;
    margin: .3rem 0 .1rem;
    padding-right: .4rem;
    font-style: italic;
    border-top: 2px solid #383A3C;
    text-shadow: .2px 0 #383A3C;
    font-size: .85rem;
} header h1 {
    margin: -7px;
} body {
    font-family: 'Arimo', sans-serif;
    background-color: #383A3C;
} header a {
    text-decoration: none;
}   #footer-heading {
    font-weight: bolder;
    font-style: italic;
    border-bottom: 2px solid #383A3C;
}
/************************************NAVIGATION BAR***********************************/
nav {
    background-color: #120D18;
    color: #383A3C;
} .navigation {
    list-style-type: none;
    text-align: center;
    padding: 0;
    border-style: groove;
    border-color: #383A3C;
    border-width: 3px 0px 3px;
    margin: 0 auto;
} .navigation li:first-child{
    display: block;
} .navigation li {
    display: none;
} .navigation a {
    display: block;
    color: #9BDBE8;
    text-align: center;
    padding: 0.75rem;
    text-decoration: none;
    font-weight: 800;
} .navigation a:hover {
    background-color:#E3E6EE;
    color:#383A3C;
} .active {
    background-color: rgba(136, 141, 145, 0.479);
    color: #E3E6EE;
} .responsive li {
    display: block;
}
/********************************* Special Pancake Awareness*************************/
#pancakes {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #120D18;
    box-shadow: 0 0 30px #E3E6EE;
    opacity: .8;
} #pancakes h2{
    color: #E3E6EE;
    padding: .2rem;
    text-align: center;
    letter-spacing: .1rem;
    font-size: 75%;
}
/**************************StormCenter**********************************/
article {
    margin: 1rem;
    padding: .7rem;
    border: 5px inset #888D91;
    box-shadow: 5px 5px 10px 3px #888D91;
    background-color:rgb(190, 206, 219);
}
form {
    background-color: #E3E6EE;
    border: 5px outset #120D18;
    text-align: left;
    margin:0 auto;
} form fieldset {
    margin: 0 auto;
    border: 5px inset #888D91;
    background-color:rgb(190, 206, 219);
} form legend {
    font-weight: bolder;
    text-shadow: .3px 0 #120D18;
    font-style: italic;
    padding: 0.4rem;
} form label.input-heading, form div{
    display: block;
    padding-top: 1rem;
    color: rgb(51, 15, 95);
    font-weight: bold;
    font-size: 1.1rem;
} form label.input-heading input, form.input-heading select, label.input-heading datalist{
    -webkit-appearance: none;
    display: block;
    font-size:1rem;
    padding: .75rem;
    max-width: 20rem;
} textarea#commentBox {
    display: block;
    margin: .3rem;
}
/***Submit Button***/
 form input.subButton {
    border: 7px outset #383A3C;
    background-color: #9BDBE8;
    color: #120D18;
    box-shadow: 5px 5px 10px 1px #888D91;
    font-weight:bolder;
    border-radius: 1em;
    padding: .75rem 1.5rem;
    margin: .2em 6em 2em 1.3em;
    letter-spacing: .05rem;
    font-style: italic;
    max-width: 20rem;
} form label.input-heading input:required {
    border-left: red solid 6px;
} form label.input-heading input:required:valid {
    border-left: green solid 6px;
} 
/***Radio Buttons***/
form label.special-buttons {
    display: block;
    padding: .75rem;
} .special-buttons > input {
    visibility: hidden;
    position: absolute;
}.special-buttons > i {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transition: 0.2s;
    box-shadow: inset 0 0 0 8px #fff;
    border: .5px solid #383A3C;
} .special-buttons span {
      padding: .3rem;
      font-size:.9rem;
      font-style: italic;
}.special-buttons > input:checked + i {
    box-shadow: inset 0 0 0 3px #E3E6EE;
    background: rgb(46, 12, 88);
}.special-buttons > input:checked ~ span {
    color: #979797;
}
/***Storm Severity Options***/
input[type=range] {
    max-width: 50%;
    background-color: rgb(190, 206, 219);
} span#ratingvalue {
      display: none;
      display: block;
      font-size: 1.5rem;
      text-align: start; 
      padding-left: 4rem;
} input[type=range]::-webkit-slider-runnable-track {
    height: 13px;
    cursor: pointer;
    box-shadow: 1px 1px 5px #000000, 0px 0px 1px #0d0d0d;
    background-color:#120D18;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
}
  