@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
     float: left;
     padding: 3px;
     border: 0px solid red;
}


.row::after {
     content: "";
     clear: both;
     display: table;
}

body {
     background-color: #3120b1;
     margin: -2px 0px 0px;
}

p, a , ul {
     color: #d4c877;
     font-family: 'Share', cursive;
     font-size: 24px;
     /*text-shadow: 2px 2px 2px black;*/
}

p::first-letter {
     font-size: 120%;
}

a{
     text-decoration: none;
}

h1 {
     color: #d4c877;
     font-family: 'Share', cursive;
     font-size: 60px;
}

h2 {
     color: #d4c877;
     font-family: 'Share', cursive;
     font-size: 45px;
}

h3 {
     color: #d4c877;
     font-family: 'Share', cursive;
     font-size: 30px;
}

.menuicon {
     vertical-align: middle; 
     width: 35px;
     margin-right: 5px;
}

#headerpic {
     border-bottom: dotted burlywood 1px;
     background-image: url("images/firelogo2.jpg");
     background-position: center;
}

#sitetitle {
     font-size: 120px;
     color: yellow;
     font-family: 'Share', cursive;
     margin-top: 0px;
}

#hamburger {
     display: none;
}

.picturestyle {
     max-width: 33%; 
     margin: 10px; 
     box-shadow: 0px 0px 20px red; 
     border: solid burlywood 2px;
}

#subtitle {
     background-color: rgba(0,0,0,0.50); 
     padding: 15px 0px;
     margin: 0px;
     font-size: 22px;
}

#menubar {
     display: block;
}

#topborder {
     border-bottom: dotted burlywood 1px;
}

#menubarborder {
     padding: 0px 25px; border-left: dotted burlywood 1px; border-right: dotted burlywood 1px;
}

#asideborder {
     padding: 0px 25px;
}

#bottomborder {
     border-top: dotted burlywood 1px; padding: 0px 25px;
}

#mb {
     border-top: none;
     border-bottom: none;
}

input[type=text], input[type=email], textarea {
   width: 100%;
   color: black;
   font-family: 'Share', cursive;
   font-size: 24px;
}

.btn {
   font-family: 'Share', cursive;
   font-size: 24px;
   color: black;
   background-color: white;
   height: 70px;
   border: solid black 1px;
   overflow: auto;
   padding: 15px;
   border-radius: 20px;
   cursor: pointer;
}  

.btn:hover {
   background-color: yellow;
}
   
#dtatlogo {
   width: 100%;
   max-width: 100%;
}

@media only screen and (max-width: 900px) {
     /* For mobile phones: */
     [class*="col-"] {
     width: 100%;
     }
     
     #sitetitle {
          font-size: 40px;
          line-height: 40px;
     }  
     
     #hamburger {
          display: block;
     }
     
     #menubar {
          display: none;
     }
     
     .picturestyle {
          max-width: 50%; 
     }

     #subtitle {
          font-size: 18px;
     }
     
     h1 {
          font-size: 40px;
     }
 
     #topborder {
          border-bottom: none;
     }

     #menubarborder {
          border-left: none;
          border-right: none;
     }

     #asideborder {
          padding: 0px 25px;
     }

     #bottomborder {
          border-top: solid #d4c877 dotted;
     }
     
     #mb {
          border-top: solid burlywood 1px;
          border-bottom: solid burlywood 1px;
     }
   
   
   #dtatlogo {
      object-fit: fill;
      height: 100px;
   }
   
}

