:root {
  --main-bg-color: black;
  --main-text-color: white;
  --alt-text-color: rgb(231, 189, 116);
  --faded-main-text-color: rgba(255, 255, 255, 0.5);
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  background-color: var(--main-bg-color);
  overflow-x: hidden;
  font-family: "Lato", "Roboto", sans-serif;
  color: var(--main-text-color);
  margin: 0;
  padding: 0;
  background-color: var(--main-bg-color);
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: var(--alt-text-color);
}

a:hover {
  color: var(--main-text-color);
}

nav > a {
  text-decoration: none;
  color: var(--faded-main-text-color);
  padding-left: 11px;
  padding-right: 11px;
  padding-top: 11px;
  letter-spacing: 0.3em;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.5em;
  text-transform: uppercase;
}

nav > a:hover {
  text-decoration: none;
  color: var(--alt-text-color);
}

h1,
h2 {
  font-family: Lato;
  text-transform: uppercase;
  text-align: center;
}

h1 {
  color: var(--main-text-color);
  font-size: 120px;
  font-weight: 100;
  letter-spacing: 2px;
  line-height: 120px;
}

h2 {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 5px;
  line-height: 25px;
  padding-top: 10px;
  color: var(--alt-text-color);
}

h3 {
  font-weight: bold;
  margin-bottom: 16px;
  padding: 0px;
  font-size: 16px;
  color: var(--main-text-color);
}

.background-container {
  min-width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-position: center center;
  background-attachment: fixed;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  min-width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: rgba(34, 28, 28, 0.9);
}

.active-link {
  color: var(--main-text-color);
}

#title-block {
  padding-top: 50px;
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  min-width: 660px;
}

#info-block {
  margin-top: 60px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  padding-bottom: 15px;
}

#map-box {
  height: 500px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  background: var(--faded-main-text-color);
  min-width: 660px;
}

#map {
  height: 100%;
  width: 100%;
}

#contact-block {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;

  width: 60%;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  line-height: 1.8em;
  color: var(--faded-main-text-color);
  min-width: 660px;
}

#contact-block > div {
  flex: 1;
  padding: 15px;
}

#contact-block p {
  margin-top: 16px;
  margin-bottom: 16px;
  word-wrap: break-word;
}

#not-found-body {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: 0.075em;
  color: var(--faded-main-text-color);
  max-width: 560px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 66px;
    line-height: 66px;
  }
}

@media only screen and (max-width: 660px) {
  #title-block {
    min-width: 90%;
  }
  #contact-block {
    flex-direction: column;
    min-width: 100%;
  }
  #map-box {
    min-width: 90%;
  }
  #not-found-body {
    min-width: 90%;
  }
}
