/**
 * Tabs
 */
 .tabs {
   display: -webkit-box;
   display: flex;
   flex-wrap: wrap;
   width:90%;
   max-width:1800px; 
   margin: 25px auto;
   
 }
 
 .tabs label {
   -webkit-box-ordinal-group: 2;
           order: 1;
   display: block;
   padding: 1rem 3rem;
   margin-right: 0.2rem;
   cursor: pointer;
   background: #000000;
   font-weight: bold;
   -webkit-transition: background ease 0.2s;
   transition: background ease 0.2s;
   font-family: 'barmo';
   color: #00FFFF;
   font-size: 30px;
   font-weight: 500;
 }

 .tabs label :hover {background-color: #008f8f;}
 
 .tabs .tab {
   -webkit-box-ordinal-group: 100;
           order: 99;
   -webkit-box-flex: 1;
           flex-grow: 1;
   width: 100%;
   display: none;
   padding: 1rem;
   background: #000000;
   border-top: 5px #00FFFF;
   border-style: solid;
 }
 
 .tabs input[type="radio"] {
   display: none;
 }
 
 .tabs input[type="radio"]:checked + label {
   background: #00FFFF;
   color: #000000;
 }
 
 .tabs input[type="radio"]:checked + label + .tab {
   display: block;
 }
 
 @media (max-width: 45em) {
   .tabs .tab,
   .tabs label {
     -webkit-box-ordinal-group: initial;
             order: initial;
   }
 
   .tabs label {
     width: 100%;
     margin-right: 0;
     margin-top: 0.2rem;
   }
 }
 /**
  * Generic Styling
 */
 

 



/* Mobile
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 550px)
{
body {
  font: 22px/1.5em;
  font-family: "source-code-pro", monospace;
  font-weight: 800;
  font-style: normal;
  color: #000000;
  font-size: 15px;
}

}