/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  font-family: “Times New Roman”;
  margin: 0;
}

/* Header */
header {
  padding: 30px;
  text-align: center;
  background: #5A3F26;
  color: white;
  border-style: double;
  border-color: #CDA688;
}

/* Top navigation bar */
.navbar {
  display: flex;
  background-color: #6F4D2F;
  border-style: double;
  border-color: #CDA688;
}

/* Navigation bar links */
.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #CDA688;
  color: black;
}

/* Main column */
.main {
  flex: 70%;
  background-color: #DFC7B3;
  padding: 20px;
  border-style: double;
  border-color: #6F4D2F;
}

/* Fake image, just for this example */
.gamebox {
  background-color: #FFF;
  width: 100%;
  padding: 20px;
  border-style: double;
  border-color: #5A3F26;
  text-align: center;
}

.button a {
  background-color: #DFC7B3;
  padding: 3px;
  border-style: double;
  border-color: #5A3F26;
  text-align: center;
  color: #5A3F26;
}

.button a:hover {
  background-color: #5A3F26;
  padding: 3px;
  border-style: double;
  border-color: #DFC7B3;
  text-align: center;
  color: #DFC7B3;
}

/* Footer */
footer {
  margin: 20px 0px 0px 0px;
  padding: 5px;
  text-align: center;
  background: #6F4D2F;
  color: white;
  border-style: double;
  border-color: #CDA688;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .container, .navbar {   
    flex-direction: column;
  }
}