/* GRID RULES START */
.container {
  display: grid;
  grid-template-areas:
    "header header quote"
    "menu content ad"
    "footer footer footer";
  grid-template-columns: .5fr 3fr 1fr;
}

/*
.container div {
  background-color: white;
}
*/

.container div.header {
  grid-area: header;
  border-block-width: 10px;
  border-block-style: solid;
  border-block-color: darkblue;
}

.container div.header img {
  height: 100%;
  object-fit: cover;
}

.container div.quote {
  grid-area: quote;
  border-block-width: 10px;
  border-block-style: solid;
  border-block-color: darkblue;
  font-size: 12px;
  text-align: center;
  margin-left: -100px;
  
}

.container div.menu {
  grid-area: menu;
  background-color: darkblue;
  padding: 10px;
  text-align: center;
}

.container div.content {
  grid-area: content;
  padding: 10px 20px;
}

.container div.ad {
  grid-area: ad;

}

.container div.ad img {
  width: 100%;
  object-fit: contain;
}

.container div.footer {
  grid-area: footer;
  text-align: center; 
  border-block-width: 10px;
  border-block-style: solid;
  border-block-color: darkblue;
  font-size:12px;
}

/* This adds a break point when the screen size goes below 600px (https://www.w3schools.com/css/css_rwd_mediaqueries.asp) */
@media only screen and (max-width: 600px) {
  .container div.header {grid-area: 1 / span 6;}
  .container div.quote {grid-area: 2 / span 6;}
  .container div.menu {grid-area: 3 / span 6;}
  .container div.content {grid-area: 4 / span 6;}
  .container div.ad {grid-area: 5 / span 6;}
  .container div.footer {grid-area: 6 / span 6;}
}
/* GRID RULES END */

.center-text {
  text-align: center; 
}

.button {
  background-color: blue;
  border-style: outset;
  border-color: lightblue;
  color: yellow;
  padding: 5px 20px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  min-width: 150px;
}

p.countdown {
  text-align: center;
  font-size: 20px;
  color: red;
}

/* GALLERY START */
  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create three equal columns that sits next to each other */
  .column {
    -ms-flex: 30%; /* IE10 */
    flex: 30%;
    max-width: 30%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 900px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }
/* GALLERY END */

/* MOST WANTED GRID START */
  .wanted {
    
    border-style: double;
    border-width: 5px;
    display: flex;
    align-items: center; /* Vertically centers the text */
    padding: 5px;
    margin: 20px;
  }
  
  .wanted-bg {
    background-color: lightgray;
  }
  
  .wanted img {
    height: auto;
    width: 200px;
  }
  
  .wanted-text {
    color: black;
    display: block;
    padding: 10px;
    
  }
  
/* MOST WANTED GRID END */

