@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body,
html {
  margin: 0;

  padding: 0;

  height: 100%;

  width: 100%;

  font-family: Arial, sans-serif;

  background: url(../assets/BO_DINOS1.png);

  background-repeat: no-repeat;

  background-size: cover;
}

.master {
  position: relative;

  min-width: 100%;

  min-height: 100vh;
}

.video-background {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  z-index: -1;
}

.text-wrapper {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%) rotate(-90deg);

  transform-origin: center center;

  display: flex;

  justify-content: center;
}

.content {
  color: white;

  font-size: 1.5em;

  z-index: 1;

  white-space: nowrap;

  width: 100%;

  padding: 1rem;
}

.content p {
  margin: 0;
}

.small {
  font-size: 12px;
}

h1 {
  font-family: "Montserrat", sans-serif;

  font-size: 15vh;

  color: white;

  text-align: center;

  font-weight: 300;

  margin: 0 0 4% 0;
}

.opening_hours {
  font-family: "Montserrat", sans-serif;

  font-size: 2em;

  color: white;

  text-align: left;

  font-weight: 800;
}

table td {
  padding: 10px 0;
}

tbody tr:nth-child(even) {
  background-color: rgba(0,0,0,0.4);;
}

table {
  border-collapse: collapse;

  width: 100%;

  text-align: center;

  font-size: 0.7em;
}

.day {
  font-family: "Montserrat", sans-serif;

  font-size: 0.8em;

  color: white;

  text-align: center;

  font-weight: 500;

  width: 10%;
}

.hours {
  font-family: "Montserrat", sans-serif;

  font-size: 1em;

  color: white;

  text-align: left;

  font-weight: 500;

  width: 10%;
}

.tickets {
  font-family: "Montserrat", sans-serif;

  font-size: 1.6em;

  color: white;

  text-align: left;

  font-weight: 800;

  padding-top: 3%;

  width: 20%;
}

.per_person {
  font-family: "Montserrat", sans-serif;

  font-size: 0.5em;

  color: white;

  text-align: left;

  font-weight: 400;
}

.info {
  text-align: left;

  font-size: 2vh;
}

.subInfo {
  font-size: 0.8rem;

  text-align: left;

  text-transform: uppercase;
}

.logo-img {
  position: absolute;

  left: 0%;

  bottom: -30%;
}

.logo-expo {
  position: absolute;

  left: 50%;

  transform: translate(-50%, -150%);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 90%;
    /* height: auto; */
    max-height: 90%;
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease,
    visibility 0.5s ease;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-image {
  max-width: inherit;
  border-radius: 10px;
  transform: rotate(-90deg);
  width: 59%;
}
.overlayy {
  background: rgba(0,0,0,0.9);
}
.modaloverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}
