body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: black;
    margin: 0;
    overflow: hidden;
    position: relative;
}

/* Ensure Triangle is Centered */
#triangle-container {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 15%;  /* Give space at the top */
    left: 50%;
    transform: translateX(-50%); /* Center it horizontally */
}

/* Play Button */
button {
    font-size: 24px;
    padding: 15px 30px;
    border-radius: 10px;
    border: none;
    background-color: gold;
    color: black;
    cursor: pointer;
    position: relative;
    z-index: 10;
    margin-top: 50px; /* Space between triangle and button */
}

.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
    font-size: 24px; /* Larger text */
    font-weight: bold; /* Optional: Makes it bold */
    color: gold; /* Change this color as needed */
  }

  .scrolling-text span {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 20s linear infinite; /* Slower speed */
  }

  @keyframes scrollText {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }




/* Media Queries for Small Screens */
@media (max-width: 480px) {
    #triangle-container {
        width: 200px;  /* Make triangle smaller on small screens */
        height: 200px;
        top: 10%;  /* Move triangle higher */
    }

    button {
        font-size: 18px;
        padding: 12px 25px;
        margin-top: 30px; /* Reduce space between triangle and button */
    }


}

/* Media Queries for Extra Small Screens */
@media (max-width: 320px) {
    #triangle-container {
        width: 150px;  /* Make triangle smaller */
        height: 150px;
        top: 5%;  /* Move triangle higher */
    }

    button {
        font-size: 16px;
        padding: 10px 20px;
        margin-top: 20px; /* Less space for small screens */
    }

}
