@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background: #1d1d1d;
}

h1 {
  background: none;
}

h1 > a {
  color: #fcfcfc;
  background: none;
}

h2 {
  background: none;
}

h3 {
  background: none;
}

a {
  color: #cacaca;
  text-decoration: none;
  background: none;
}

.current {
  color: #fcfcfc;
}

.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100dvh;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}

.showcase > img {
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  object-fit: cover;
}

.showcase > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu {
  position: fixed;
  top: 30%;
  left: 2%;
  padding: 10px;
  color: #fcfcfc;
  background: rgba(0, 0, 0, 0.5058823529);
  z-index: 1;
}

.slideshow {
  position: static;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: auto;
}

.slideshow-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  left: 150px;
  max-width: 70dvw;
}

.slide {
  display: block;
  width: auto;
  max-width: 100%;
  height: 90%;
  object-fit: cover;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
}

.textblock {
  position: absolute;
  font-size: 100%;
  background: rgba(0, 0, 0, 0.5058823529);
  padding: 10px;
  top: 20%;
  left: 300px;
  width: 60%;
  color: #fefefe;
}

.splash {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.splash > img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 90%;
  object-fit: cover;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
}

@media only screen and (orientation: portrait) {
  .menu {
    top: 0%;
    left: 0%;
    width: 100%;
    background: #1d1d1d;
  }
  .textblock {
    position: relative;
    top: 200px;
    left: 4%;
    width: 92%;
  }
  .slideshow-content {
    top: 18dvh;
    height: 80dvh;
    left: 0px;
    max-width: 100dvw;
  }
  .slide {
    height: 95%;
  }
}

/*# sourceMappingURL=styles.css.map */