
       
            :root {
                --body-bg-image: url('/images/pipboy3000size2.png');

                /* colors */
                --content: #43256E;
            }
        


            @font-face {
                font-family: 'monofonto';
                src: url ('monofonto.otf') format ('opentype'); 
          }
          

            body {
                font-family: 'monofonto', monospace;
                margin: 0;
                background-image: url('/images/pipboy3000size2.png');
                background-repeat: no-repeat;
                background-size: cover;
                background-color: black;
                background-position: 100% 8%;
                overflow-x: hidden;
              
            }

            * {
                box-sizing: border-box;
            }
  
    /* span style */ .dark { color: #4d3a19;
    }

img {
    height:auto;
}

.rounded {
    border-radius: 5px;
}

.main {
    width:600px;
    height:480px;
    overflow-x:hidden;
    position:fixed;
    top:140px;right:400px;
    padding-top:1px;
}

button{
    color:#ffb642;
    padding: 10px 10px;
}
.hidden {
    display: none;
   }
.visible {
    display: block;
   }
  

 /* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 50%;
  padding: 2px;
}

.column1 {
  float: left;
  width: 50%;
  padding: 2px;
}

.column3 {
  float: left;
  width: 33.3%;
  padding: 5px;
  text-align:center;
}
.column3 img {
  padding: 14px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}      

 
    a {
      text-decoration:none;
      color:#ffb642;
    }
           
              .btn-group button {
  font-family: 'monofonto', monospace;
  font-size: 140%;
  text-align: left;
  background-color: transparent; 
  border: 1px solid transparent; 
  color: #ffb642;  
  padding: 10px 10px;
  cursor: pointer;  
  display: block; 
}

              .btn-group {
            width:250px;
            height:500px;
            overflow:auto;
            position:fixed;
            top:120px;
            right:1010px;
            background-color:transparent;
            text-align:left;
  
}
  
p {
    color:#ffb642;
}

#wrapper .hovertext {
position:relative;
bottom:50px;
left:0px;
visibility:hidden;
background-color: black;
margin-bottom:-50px
}

#wrapper:hover .hovertext {
visibility:visible;
}

.title {
    font-size:150%;
    letter-spacing:3px;
    text-align:center;
    text-decoration: underline;
}

.tag {
  font-size:90%;
  color:black;
  background-color:#ffb642;

}

.text {
    font-size:120%;
    letter-spacing:0px;
    text-align:left;
}
/* Dropdown Button */
.dropbtn {
  background-color: transparent;
  padding: 10px 10px;
  font-size: 140%;
  border: 1px solid transparent; 
  color: #ffb642;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover {
  background-color:#4d3a191c;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content button {
  background-color:transparent;
  color: #ffb642;
  font-size: 140%;
  padding: 10px 10px;
  margin-left:30px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content button:hover {background-color: transparent;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

  .btnEmpty {
    color:#4d3a19;
    padding: 10px 10px;
  }
  .btnEmpty:hover {background-color: transparent;
}


/* sctollbar direction */


/* Add a background color on hover */
.btn-group button:hover {
  background-color: #4d3a194e;
}
/* Add a background color on hover */
.btn-group button:hover {
  border-color: #ffb642;
}



              /* Hide scrollbar for Chrome, Safari and Opera */
.hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Scrollbar styles */
::-webkit-scrollbar {
width: 6px;
}

::-webkit-scrollbar-track {
border-radius: 6px;
}

::-webkit-scrollbar-thumb {
background: #4d3a19;  
border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
background: #ffb642;  
}

         .navbar {
  font-family: 'monofonto', monospace;
  background-color: transparent; 
  border: 3px solid transparent;
  padding:2px 3px 2px 3px;
  color: #ffb642;  
  cursor: pointer;  
}
            
           
.navbar:hover {
  background-color: transparent;
}

.navbar:hover {
  border-color: #ffb642;
  
}
    
            #container {
                max-width: 950px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }


      


            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
            