:root {
  --background-transparency: rgba(0, 0, 0, 0.85);
  --fade-duration: 1s;
  --fade-timing: linear;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: black;
  background-image: url("../assets/LandingBG.webp");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
}

.wrapper {
  padding-top: 0.5em;
  background-color: rgba(0, 0, 0, 0.9);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

header {
  flex-grow: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
  overflow-y: auto;
  position: relative;
}

.content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.carousel-wrapper {
  width: 100%;
  height: 100%;
  display: none;
}

#about {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
}

footer {
  flex-grow: 0;
  height: 5vh;
}

.text-visible {
  text-shadow: 2px 0 2px rgba(0, 0, 0, 0.644), 0 2px 2px rgba(0, 0, 0, 0.644), -2px 0 2px rgba(0, 0, 0, 0.644), 0 -2px 2px rgba(0, 0, 0, 0.644), 0 0 10px rgba(255, 4, 4, 0.846);
  color: rgb(241, 231, 231);
  font-weight: 700;
  letter-spacing: 0.035rem;
}

.fade-transition {
  transition: all 0.5s ease;
}

.invisible {
  opacity: 0;
}

.my-modal {
  position: absolute;
  top: 0;
  left: 0;
}

