#home {
    display: flex;
    align-items: center;
    color: white;
}

#video-container {
    background-color: black;
    display: flex;
    justify-content: center;
    overflow: hidden;
    min-height: 300px;
    max-height: 600px;
}

video {
    opacity: 0.5;
    width: 100vw;
    object-fit: cover;
}

#video-overlay {
    width: 100vw;
    text-align: center;
    position: absolute;
}

#video-overlay h1 {
  white-space: nowrap;
  font-size: clamp(1.5rem, 5vw, 5rem); /* min 1.5rem, max 5rem */
  margin: 0 auto; /* horizontally centered if you want */
}

#video-overlay h2 {
  white-space: nowrap;
  font-size: clamp(1rem, 3vw, 2.5rem);
  margin: 0 auto;
}

#join-telegram-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #0088cc; /* Telegram blue */
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

#join-telegram-btn:hover {
  background-color: #006699;
}

@media only screen and (max-width: 300px) {
    #video-overlay h1, #video-overlay h2 {
        white-space: normal;
    }
}