html {
  height: 100%;
  margin: 0;
  z-index: 4;
  font-family: 'Syne Mono';
}
@font-face {
  font-family: 'Syne Mono';
  src: url('/Font/SyneMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(grey, rgb(54, 54, 54));
  font-family: 'Syne Mono';
}

.tree-image {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  max-height: 99vh;
  height: auto;
  object-fit: contain;
  z-index: 0;
  overflow: visible;
  
}
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
  z-index: 1;
}

.leaf-button {
  border: none;
  color: rgb(0, 0, 0); /* Change the text color as needed */
  padding: 22px 30px 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-family: 'Syne Mono';
  background-image: url('/CDN/Images/Leaf.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  z-index: 2;
  transform: translateX(-10px);
}
.leaf-button:hover {
  filter: drop-shadow(0 0 10px rgba(0, 255, 149, 0.603));
}


@media (orientation: portrait) {
  /* CSS rules for portrait orientation */
  .hideDesktop {
    display: hidden;
  }
}

@media (orientation: landscape) {
  /* CSS rules for landscape orientation */
  .hideMobile {
    display: hidden;
  }
}