


*{
    box-sizing:border-box;
}


header {
    width: 100%;
    text-align:center;
    display: block;
    unicode-bidi: isolate;
}

body {
    background: whitesmoke;
    font-family: Arial, Helvetica, sans-serif;
  }
  

  /* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
  }
  
  /* Hide the links inside the navigation menu (except for logo/home) */
  .topnav #myLinks {
    display: none;
  }
  
  /* Style navigation menu links */
  .topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
  }
  
  /* Style the hamburger menu */
  .topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  /* Add a grey background color on mouse-over */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Style the active link (or home/logo) */
  .active {
    background-color: #aa0481;
    color: white;
  }
  
  /* .mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #555;
  height: 500px;
  color: white;
  border-radius: 10px;
} */




.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  background:rgb(0, 0, 0);
 
}

/* coding to make nav work! */
.flexbox-header {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;

  background: rgb(0, 0, 0);
  color: black;
  /*text-align: center;*/
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 30px;
  /* max-height: 100px; */
  color: white;
  font-family: helvetica, arial, sans-serif;
  padding: 20px;
}




/* child elements in nav that can be flexed */
.flexbox-header>div {
  flex: 1 1 auto;
  text-align: center;
  font-family: 'Knewave', serif;
}