html,
body {
  background-color: #222222;
  font-family: "Times New Roman";
  color: #ece0c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  height: auto;
  width: auto;
  align-items: stretch;
}

.texture {
  background-image: url("images/texture.webp");
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-position: center;
  background-blend-mode: overlay;
  background-repeat: repeat;
  opacity: 0.005;
}

.full_wrapper {
  display: flex;
  margin-top: 5vw;
}

.menu_container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

.boss {
  display: flex;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  align-items: center;
}

.bosspic {
  height: 75px;
  width: 75px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.hero {
  display: none;
}

.timer_container {
  display: flex;
}

.timer_container p {
  font-size: larger;
  margin: 0px;
  margin-top: 5px;
}

.details_pane {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-left: 5px;
}

h1 {
  font-family: "Exocet";
  font-weight: 300;
}

h2 {
  margin: 0px;
  font-weight: 300;
}

.box {
  max-width: 450px;
  min-width: 450px;
  padding: 5px;
  border: 2px solid;
  margin-bottom: 5px;
}

.box::before .box::after {
  content: "•";
  width: 14px;
  height: 14px;
  font-size: 14px;
  border: 2px solid;
  line-height: 12px;
  top: 5px;
  text-align: center;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 1%;
  width: 100%;
  text-align: center;
  font-size: smaller;
  font-family: "Exocet";
}

.footer p {
  padding: 2px;
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
}

@font-face {
  font-family: "Exocet";
  src: url("fonts/ExocetLight.woff2") format("woff2"),
    url("fonts/ExocetLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exocet";
  src: url("fonts/ExocetHeavy.woff2") format("woff2"),
    url("fonts/ExocetHeavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@media screen and (max-width: 299px) {
  .bosspic {
    height: 50px;
    width: 50px;
  }

  .box {
    max-width: 215px;
    min-width: 215px;
  }

  h1 {
    font-size: larger;
  }

  h2 {
    font-size: small;
  }

  .timer_container p {
    font-size: medium;
  }

  .full_wrapper {
    display: flex;
    margin-top: 25vh;
  }
}

@media screen and (min-width: 300px) {
  .bosspic {
    height: 50px;
    width: 50px;
  }

  .box {
    max-width: 270px;
    min-width: 270px;
  }

  h1 {
    font-size: larger;
  }

  h2 {
    font-size: larger;
  }

  .full_wrapper {
    display: flex;
    margin-top: 25vh;
  }
}

@media screen and (min-width: 1670px) {
  .bosspic {
    height: 100px;
    width: 100px;
  }

  .box {
    max-width: 600px;
    min-width: 450px;
  }

  .hero {
    background-image: url("images/hero.webp");
    width: 1141px;
    height: 672px;
    background-position: right;
    background-repeat: no-repeat;
    display: block;
    margin-left: 2vw;
  }

  .full_wrapper {
    align-items: center;
    flex-direction: row;
    position: absolute;
    right: 0px;
    margin-top: 5vw;
  }

  h1 {
    font-size: 250%;
  }

  h2 {
    font-size: xx-large;
  }

  .timer_container p {
    font-size: xx-large;
  }

  .box {
    padding: 10px;
  }

  .details_pane {
    margin-left: 10px;
  }

  .footer p {
    font-size: medium;
  }
}

@media screen and (min-width: 1850px) {
  .hero {
    margin-left: 5vw;
  }

  .full_wrapper {
    display: flex;
    margin-top: 5vw;
  }
}
