body {
    font-family: "Montserrat", sans-serif;
    transition: background-color .5s;
}

a {
    color: white;
}

a:hover {
    color: #D35400;
}

/* =================================
Nav Styles
==================================== */

.topnav {
    overflow: hidden;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 3px;
    right: 2px;
    background: transparent;
}

/* Style the links inside the navigation bar */
.topnav a {
    font-family: "Montserrat", sans-serif;
    display: flex;
    color: black;
    text-align: center;
    padding: 14px 1.25em;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.25em;
}

.topnav a:first-child {
  display: none;
}

.topnav a:last-child {
  size: 20px;
}

/* Change the color of links on hover */
.topnav a:hover:not(:last-child){
    text-decoration: underline;
}

/* Add an active class to highlight the current page */
.active {
    background-color: #D35400;
    color: white;
}

/* =================================
 Hero Styles
==================================== */

.hero {
    /* Sizing */
    width: 100%;
    height: 300%;

    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    /* Text styles */
    text-align: center;

    /* Background styles */
    background: url('../images/IMG_1914.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

.hero h1 {
  color: #000;
  font-family: 'Futura', sans-serif;
  font-size: 3em;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 3.25em;
  margin-bottom: 0;
  letter-spacing: 2px;
  padding-left: 10px;
  padding-right: 10px;
}

.hero h1::first-line {
  font-size: .70em;
}

.hero h2 {
  font-family: 'Futura', sans-serif;
  font-size: 1.25em;
  margin-top: 0;
  margin-bottom: 2em;
  color: #000;
  padding-top: 1px;
  padding-bottom: 1px;
  font-weight: lighter;
  letter-spacing: 3.5px;
}

h2::before {
  content: "";
  display: inline-block;
  width: 100vw;
  height: 1px;
  background: #000;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* hides the top-right logo on small screens */
#logo {
    display: none;
}

#overlay {
  width: 100vw;
  height: 350vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,.75);
  position: relative;
}

.play-button {
    height: 4.4em;
    width: 4.2em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4em;
}

.play-button:hover {
  cursor: pointer;
}

.spacer {
  height: 15%;
}

.about-section {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15em;
  width: 90%;
  text-align: left;
  margin: auto;
}

.laurel {
  background-image: url(../images/wf-2018-blk.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 55%;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5em;
  padding-top: 3em;
}

.button {
  font-family: "Futura";
  text-transform: uppercase;
  font-size: 1em;
  padding: .65em 4em;
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
  color: #fff;
}

.button:hover {
  background-color: #D35400;
  color: white;
  cursor: pointer;
}

.button:focus {
  outline: 0;
}

#wings {
  margin-top: 3em;
  margin-bottom: 3em;
}

#monarchs {
  padding: .65em 3.5em;
}

.footerwrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  padding-top: 2em;
  padding-bottom: 2em;
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 2em;
}

#facebook {
  margin-right: 2em;
}

.contact,
.copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
}

.contact {
  margin-bottom: .5em;
}

/* =================================
Media Queries
==================================== */

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:last-child) {display: none;}
  .topnav a.icon {
    display: inline-block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    display: inline-flex;
    flex-direction: column;
    text-align: center;
  }

  .topnav.responsive {
      flex-direction: column;
  }

  .topnav.responsive a:first-child {
    margin-top: 1.5em;
  }

}

@media (min-width: 400px) {
  #overlay {
    height: 350vh
  }
}

@media (min-width: 601px) {

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

#logo {
  width: 5em;
  height: 4.9em;
  display: flex;
  position: absolute;
  top: 3px;
  left: 14px;
  background: transparent;
}

#logo :hover {
  cursor: pointer;
  border-radius: 16px;
}

.hero {
  height: 300%;
}

#overlay {
  height: 375vh;
}

.hero h1 {
  margin-top: 2.75em;
  font-size: 4em;
}

.hero h2 {
  font-size: 1.5em;
}

.about-section {
  text-align: justify;
  font-size: 1.35em;
  width: 80%;
  padding-bottom: 3em;
}

.laurel {
  width: 40%;
  margin-bottom: 1.5em;
}
}

@media (min-width: 768px) {

.hero {
  height: 275%;
}

#overlay {
  height: 350vh;
}

.hero h1 {
  margin-top: 3.5em;
}

.spacer {
  height: 12%;
}

.laurel {
  margin-left: auto;
  margin-right: auto;
  width: 30%;
}

.button {
  margin-bottom: 4em;
}

.footerwrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
}

.social {
  order: 1;
  align-items: center;
  margin-bottom: 0;
}

#facebook {
  margin-left: -3.5em;
}

.contact {
  order: 0;
  margin-bottom: 0;
}

.copyright {
  order: 2;
}
}

@media (min-width: 992px) {

#overlay {
  height: 315vh;
}

.hero h1 {
  margin-top: 2.75em;
  font-size: 5em;
}

.spacer {
  height: 15%;
}

.laurel {
  width: 30%;
}

.button {
  margin-bottom: 3em;
}
}
