/*Menu Icon*/
.container {
  display: inline-block;
  cursor: pointer;
  margin-right: 30px;
  margin-top: 10px;
}

.bar1, .bar2, .bar3 {
  width: 20px;
  height: 2px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}
  
/* Fade out the second bar */
.change .bar2 {opacity: 0;}
  
/* Rotate last bar */
.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

/*main content style*/
* {
    box-sizing: border-box;
}

.column {
    float: left;
    padding: 10px;
}

.column.left {
    width:20%;
}

.column.main {
    width: 70%;
    font-size: 20px;
}

.column.search{
    width:80%;
}

.loginArea{
    float: right;
}

.loginArea a{
    margin: 0px 10px; 
}

/*wiki text*/
.wikiText {
    display: flex;
    flex-flow: row wrap;
    width:150px;
    height:60px;
}

.menuLogo {
    display: flex;
    justify-content: right;
}

.column.left ul {
     margin-top:50px;
     list-style: none;
}

.column.left ul li {
    margin: 10px 0px;
}

.column.left ul li a{
    text-decoration: none;
}

/*search bar*/


  /* Style the links inside the navigation bar */
.topnav a {
    float: right;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }

  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Style the "active" element to highlight the current page */
  .topnav a.active {
    background-color: #2196F3;
    color: white;
  }
  
  /* Style the search box inside the navigation bar */
  .topnav input[type=text] {
    padding: 6px;
    border: 1px solid gray;
    margin-top: 8px;
    margin-right: 16px;
    font-size: 17px;
    width:400px;
  }

  .topnav button{
    width:50px;
    height:35px;
  }

  .column.footer {
    width: 100%;
  }

  body{
    background-color: #f8f9fa;
    color: #202122;
    overflow-y: scroll;
    margin:0;
    font-family: serif;
  }

  html, body{
    height: 100%;
    
  }

  table , td , th{
    border: 1px solid rgb(48, 48, 48);
  }

  th , .season {
    background-color: #eaecf0;
  }

  .refList {
    display: inline-block;
    font-size: 18px;
  }

  .refList.left {
    width: 40%;
  }

  .refList.right {
    width:40%;
    float: right;
  }

  p {
    font-size: calc(1em * 0.875);
  }
  
  h1 {
    font-size: 1.8em;
  }

  .rlcs {
    border: 1px solid black;
  }

  .noBorder {
    border:none;
    padding: 5px 20px;
    background-color:#f8f9fa ;
  }

  figure {
    border: solid 3px rgb(73, 72, 72);
    background-color: lightgray;
  }

  figure img {
    margin: 20px 20px;
  }

