/*
TODO: this should only have global variables... make input stuff to its ows scss...
*/
html {
  background-color: #F5E8DD;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.main {
  width: 80%;
  margin: auto;
}

nav {
  display: flex;
  margin-bottom: 20px;
  padding-top: 10px;
}
nav a {
  text-decoration: none;
  line-height: 30px;
  padding: 0 10px;
  display: inline-block;
  color: rgb(238, 238, 238);
  transition: all 0.3s ease-out;
  font-weight: 500;
}
nav a:hover {
  color: #B5C0D0;
}
nav .menu-links {
  margin: auto;
}

.active-link {
  border-bottom: 3px solid;
  border-color: #B5C0D0;
  color: #B5C0D0;
}

header {
  height: 56vw;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7607843137), 30%, rgba(255, 255, 255, 0), 90%, rgba(245, 232, 221, 0.9647058824)), url("../../resources/images/logo2.png") no-repeat top center;
  background-size: 100% auto;
}

a {
  text-decoration: none;
  color: #317be7;
}

body {
  margin: auto;
}

#popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (min-width: 320px) {
  nav a {
    font-size: 9px;
  }
}
@media only screen and (min-width: 480px) {
  nav a {
    font-size: 17px;
  }
}
@media only screen and (min-width: 801px) {
  nav a {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1025px) {
  nav a {
    font-size: 23px;
  }
}/*# sourceMappingURL=header.css.map */