body {
  background-color: #111214;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
}

.logo {
  max-width:1500px;
  width:100%;
}

.align-center {
  text-align: center;
}

sl-button::part(base) {
  background-color: rgba(255, 215, 0, .2);
  color: rgb(229, 209, 110);
}

sl-button::part(base):hover {
  background-color: rgba(255, 215, 0, 1);
  color: rgb(56, 47, 0);
}

.button-div {
  position: absolute;
  display: grid;
  flex-wrap: wrap;
  width: 100vw;
  justify-content: center;
  gap: 14px;
  justify-items: center;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 0 10px;

  animation: 7s fadeIn;
  animation-fill-mode: forwards;
  visibility: hidden;
}

.enter-btn {
  width: 140px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: fill;
  width: 100%;
}

/*this query will apply for the devices those have width smaller than 1024px*/
@media (max-width: 1024px) {
  #myVideo {
    object-fit: fill;
    width: 200%;
    left: -50vw;
  }
}

@media (max-width: 680px) {
  .button-div {
    grid-template-columns: 1fr 1fr;
  }
}
