body {
  background: linear-gradient(-18deg, #111111, #000000, #181010, #282828);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}




@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

img {
  border-radius: 50%;
}

.profile-picture {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7%;
  height: auto;
  max-width: 135px;
}


.signature1 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  border-radius: 0%;
  margin-top: 0%;
  max-width: 140px;
  margin-bottom: 0%;

}



.typing {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 30px;
  height: auto;
  border-radius: 0%;
  margin-top: 0%;
  max-width: 390px;
  margin-bottom: 0%;

}

.profile-name {
  text-align: center;
  padding: 10px;
  font-family: "Dosis", sans-serif;
  color: white;
  font-size: 30px;
  letter-spacing: 2px;
}

.profile-about {
  text-align: center;
  padding: 2px;
font-family: 'Roboto', sans-serif;
	color: white;
  font-size: 18px;
  letter-spacing: 2px;
}

.links {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  border: 0.5px solid rgb(255, 255, 255);
  border-width: 1px;
  width: 490px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
  font-family: "Dosis", sans-serif;
  position: relative;
  font-size: 20px;
  letter-spacing: 3px;
}

.links-in {
  padding: 5px;
  border: 0.5px solid rgba(255, 255, 255, 0);
  border-width: 1px;
  width: 30px;
  display: block;
  border-radius: 40px;
  left: 20px;
  position: absolute;
  font-size: 20px;
}

.hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: color 1s;
}

.hover:hover {
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  text-decoration: none;
}

.bottom-text {
  text-decoration: none;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 15px;
  color: rgb(255, 255, 255);
  font-family: "Handlee", cursive;
}

.link-hide {
  text-decoration: none;
}
.link-hide:hover {
  text-decoration: none;
}

@media (max-width: 548px) {
  .links {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    border: 0.5px solid rgb(255, 255, 255);
    border-width: 1px;
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    font-family: "Dosis", sans-serif;
    position: relative;
  }
  .profile-about {
    text-align: center;
    padding: 2px;
    font-family: "Dosis", sans-serif;
    color: white;
    font-size: 15px;
    letter-spacing: 1px;
  }
}

.links-footer {
  padding: 4px;
  border: 0.5px solid rgb(255, 255, 255);
  border-width: 1px;
  width: 40px;
  display: inline-block;
  border-radius: 30px;
  font-size: 20px;
  text-align: center;
  margin: 10px;
  margin-top: 50px;
}



#gradient-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(-18deg, #111111, #000000, #181010, #282828);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* This ensures the particles are behind your content */
}

#concertsButton {
  background: transparent;
  font-weight: bold;
font-weight: 700 !important; /* Increase the font weight for boldness */


}

.hover:hover,
#concertsButton:hover {
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  text-decoration: none;
}




.link-container {
  background: transparent;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: rgba(226, 226, 226, 0.95) !important; /* Adjust the opacity (last value) to make it more or less transparent */
  margin: 300px auto 0; /* Add 20px padding to the top */
  padding: 20px;
  border: 1px solid #888;
  width: 60%; /* Adjust this value to make the modal smaller or larger */
  max-width: 400px; /* Set a maximum width to limit the size */
  border-radius: 20px !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  position: relative;
}


.modal-content button {
  display: block;
  width: 100%;
  border: none;
  background-color: #002345; /* Change to dark blue color */
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border-radius: 25px; /* Increase the border-radius value to make it more round */
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s; /* Add transition for smooth hover effect */
}



.modal-content button:hover {
  background-color: #00478c; /* Change to a more visible hover color */
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 30px !important;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}






.modal-content {
  position: relative;
}

.modal-content .modal-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.modal-content .close {
  font-size: 30px !important;
  font-weight: bold;
  position: absolute;
  top: 30px;
  right: unset; /* Remove the right property */
  left: 25px; /* Add the left property and set the desired value */
  transform: translateY(-50%);
}


#sponsorshipsButton.links {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 0.5px solid rgb(255, 255, 255);
}

#sponsorshipsButton.links {
    border-width: 1px !important;
}

#sponsorshipsButton.links:hover {
    color: rgb(0, 0, 0) !important;
    background: rgb(255, 255, 255) !important;
    text-decoration: none !important;
}





@media only screen and (max-width: 768px) {
    body .modal {
        position: fixed;
        top: -25%;
        left: 0%;
        right: 0%;
        bottom: 15%;
        width: auto;
        height: 1000px;
        max-height: 1000vh;
        overflow-y: auto;
    }
}











/* Centering and styling the NEWS button */
#newsButton {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    border: 2px solid #fff; /* White border */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease; /* Smooth transform on hover */
    display: block; /* Makes the button a block element */
    margin: 20px auto; /* Centers the button horizontally */
    text-align: center; /* Center text */
}

/* Styling for the News Popup */
.news-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 2; /* Ensures it's above other content */
}

.popup-content {
    background-color: rgba(255, 255, 255, 0.9); /* White with 80% opacity */
    margin: 10% auto; /* Adjust vertical margin */
    padding: 20px;
    border-radius: 10px;
    width: 80%; /* Adjust width */
    max-width: 400px; /* Maximum width for smaller screens */
    position: relative;
}

.popup-title {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center; /* Center the title */
}

.close-btn {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.news-item {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 10px 20px;
    margin-top: 20px;
    text-align: center; /* Center text in news items */
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s; /* Transition for hover effect */
    display: block; /* Make news items block elements */
    margin: 20px auto; /* Center news items */
    width: 80%; /* Width of news items */
}

.news-item:hover {
    background-color: #333; /* Darker on hover */
}

#newsButton:hover {
    background-color: #333; /* Darker on hover */
}




/* Styling for the Managment Popup */
#mgmButton {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    border: 2px solid #fff; /* White border */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease; /* Smooth transform on hover */
    display: block; /* Makes the button a block element */
    margin: 20px auto; /* Centers the button horizontally */
    text-align: center; /* Center text */
}

.mgm-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 2; /* Ensures it's above other content */
}

.mgmpopup-content {
    background-color: rgba(255, 255, 255, 0.9); /* White with 80% opacity */
    margin: 10% auto; /* Adjust vertical margin */
    padding: 20px;
    border-radius: 10px;
    width: 80%; /* Adjust width */
    max-width: 400px; /* Maximum width for smaller screens */
    position: relative;
}

.mgmpopup-title {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center; /* Center the title */
}

.mgmclose-btn {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.mgm-item {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 10px 20px;
    margin-top: 20px;
    text-align: center; /* Center text in news items */
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s; /* Transition for hover effect */
    display: block; /* Make news items block elements */
    margin: 20px auto; /* Center news items */
    width: 80%; /* Width of news items */
}

.mgm-item:hover {
    background-color: #333; /* Darker on hover */
}

#mgmButton:hover {
    background-color: #333; /* Darker on hover */
}


