/*Body*/
body {
    background: black;
    background-image: url(assets/bgs/map_contamination.jpg);
    height: 100vh;
    overflow-y: hidden;
    background-size: cover;
    color: white;
}

/*HR Styling*/
hr {
    color: white; 
}

/*Font Faces*/
@font-face {
    font-family: 'Vera Humana 95';
    src: url('Vera.ttf');
}

@font-face {
    font-family: 'Deja Vu';
    src: url('dejavusans-bold.ttf');
}

/*Main*/
#main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    width: 750px;
    height: auto;
    margin: auto;
    padding: 10px;
    font-family:'Deja Vu';
} #main h1 {
    font-family: 'Vera Humana 95';
    font-size: 42px;
    color: #ffc444;
    margin: 0;
} #main h2{
    font-size: 14px;
} #main b {
    color: #cc163e;
} #main hr {
    width: 95%
}

/*Sub*/
#sub {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    border: white 1px solid;
    background: rgba(0, 0, 0, 0.80);
    width: 100%;
    margin-top: 15px;
    padding: 5px;
} #sub p {
    margin: 5px 0 5px 0;
}

a {
    color: white;
} a:hover {
    color: #606bc9;
}

/*Navigation*/
#navigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: white 1px solid;
    background: rgba(0, 0, 0, 0.80);
    width: 100%;
    padding: 10px;
    pointer-events: none;
} #navigation a {
    text-decoration: none;
    pointer-events: all;
} 

/*Status Shit*/
iframe {
    height: 80px; 
    width: 500px; 
    padding: 10px; 
    margin-top: 10px;
}


/*CRT Effect*/
body::before {
content: "";
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
z-index: 2;
background-size: 100% 2px, 3px 100%;  /*affects 'bar' size */
pointer-events: none;
}
    
@media only screen and (min-width: 651px) {
  #topnav {
    display: none;
  }
}
  
@media only screen and (max-width: 650px) {
  
  .flex-container {
    display: flex;
    flex-direction: column;
  }
  #sidenav {
    display: none;
  }
  #aside {
    width: fit-content;
  }
   .extras {
    display: flex;
    flex-direction: row;
  } 
}