/* zombie game styles.css */
  
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
  }

#canvas {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gallery-text_80 {
    float: left;
    width: 70%;
    word-break: break-all;
    font-size: 17px;
    color: rgb(65, 11, 82);
    font-family: 'Trebuchet MS';
}

.gallery-text_20 {
  float: left;
  width: 30%;
  word-break: break-all;
}

  .outer
  {
    width:100%;
    text-align: center;
  }
  .inner
  {
    display: inline-block;
  }

  .arrow {
    display: inline-block;
    font-size: 20px;
    color: rgb(188, 255, 126);
  }
  
  .button {
    background-color: rgb(184, 219, 245);
    border: none;
    color: black;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    font-family: 'Trebuchet MS';
    margin: 4px 2px;
    cursor: pointer;
  }
  .button1 {border-radius: 12px;}

  .buttonforothers {
    background-color: rgb(184, 219, 245);
    border: none;
    color: black;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    font-family:'Trebuchet MS';
    margin: 4px 2px;
    cursor: pointer;
  }
  .button2 {border-radius: 2px;}

  /* Style the header */
  header {
    background-color: #7294AD;
    padding: 30px;
    text-align: center;
    font-size: 35px;
    color: white;
  }
  
  .topnav {
    overflow: hidden;
    background-color: #333;
  }
  
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #AF4C4C;
    color: black;
  }
  
  .topnav a.active {
    background-color: #4CAF50;
    color: white;
  }
  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: #f2f2f2;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #AF4C4C;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f2f2f2;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #AF4C4C;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-conteent {
    display: block;
  }
  
  .article {
    float: left;
    padding: 20px;
    width: 100%;
    background-color: #88AD72;
    height: 700px; 
    border-style: solid;
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  
  /* Clear floats after the columns */
  section:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Style the footer */
  footer {
    background-color: #7294AD;
    padding: 10px;
    text-align: center;
    color: white;
  }
  
  @media (max-width: 600px) {
    nav, article {
      width: 100%;
      height: auto;
    }
  }
