body {
    background-color: black;
    color: white;
    font-family: 'Roboto', sans-serif;
    line-height: 2.5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
}

@keyframes pulse {
  0% {
    color: rgb(0, 255, 50);
  }
  25% {
    color: white; /* Initial color */
  }
  50% {
    color: rgb(0, 255, 50);
  }
  75% {
    color: white; /* Initial color */
  }
  100% {
    color: rgb(0, 255, 50);
  }
}

#title-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
}

#title {
    margin: 0;
    padding: 0;
    letter-spacing: 0.25em; /* Adjust this value to increase or decrease spacing */
    text-transform: lowercase; /* Ensures all letters are lowercase */
    font-weight: 400; /* 700 makes the font bold, use 400 for regular weight */
    animation: pulse 1s infinite;
    transition: all 0.3s ease;
    font-size: 2rem; /* Adjust this value as needed */
    color: white; /* Initial color */
    text-shadow: none;
}

#title span {
    display: inline-block;
    transition: all 0.3s ease;
}

#title-container.open #title {
    animation: none;
    color: rgb(0, 255, 50);
}

#title-container.open #title span {
    color: rgb(0, 255, 50); /* Text color when open */
}

#arrow {
    font-size: 1.25em;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

#title-container.open #arrow {
    transform: rotate(180deg);
}

#social-menu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#social-menu.show {
    max-height: 300px; /* Adjust this value based on your content */
    transition: max-height 0.5s ease-in;
}

#social-menu a {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.35em; /* Adjust this value to increase or decrease spacing */
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 1px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-size: 1.25rem; /* Add this line to increase font size */
    font-weight: 400; /* Use 400 for regular weight, 700 for bold */
}

#social-menu.show a {
    opacity: 1;
    transform: translateY(0);
}

#social-menu a:hover {
    color: rgb(0, 255, 50);
}

#center-content {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    z-index: 1; /* Ensure it is above other elements */
    margin-top: 20px; /* Add margin to separate from the top */
}

#center-content2 {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    z-index: 2; /* Ensure it is above other elements */
    margin-top: 10px; /* Add margin to separate from the top */
}

#logo {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 1;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for exact centering */
}

#gif-container {
    margin-bottom: 20px; /* Add space below the GIF */
}

#gif-container img {
    max-width: 100%;
    max-height: 25vh; /* Adjust as needed */
    filter: invert(100%) hue-rotate(180deg) brightness(100%) contrast(100%);
}

#youtube-thumbnails {
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-top: 20px; /* Ensure there's space above the thumbnails */
    margin-right: 15;
    margin-left: 15;
}

#youtube-thumbnails img {
    width: 200px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    margin: 35px; /* Add margin for spacing */
}
