/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.hero-section {
  display: none;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100; /* Ensures the header stays above other content */
    background: linear-gradient(to bottom, #5b2dea, rgba(91, 45, 234, 0)); /* Gradient from purple to transparent */
}

/* Adjusting the container to center its children and align them vertically */
.header__main-bar .header__container {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically (if needed) */
}

.header__container {
    display: flex;
    flex-direction: column; /* Stack the rows vertically */
    align-items: center; /* Center the rows horizontally */
    width: 100%; /* Full width of the header */
}

.header__logo-row, .social-follow-row {
    display: flex;
    justify-content: center; /* Center content horizontally within each row */
    align-items: center; /* Center content vertically within each row */
    width: 100%; /* Each row takes the full width */
    text-align: center; /* Center inline elements or text */
}

.social-follow-row {
    margin-top: 20px; /* Adds space between logo and social follow module */
}


@media (max-width: 768px) {
    .header__logo, .social-follow {
        /* Adjustments for smaller screens */
        flex-direction: column; /* Ensure vertical stacking on smaller screens */
    }
}
.button {
  border: 1px solid #FFF; /* White border for contrast */
  border-radius: 6px;
  color: #FFF; /* White text color for contrast */
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  font-weight: normal;
  height: auto;
  line-height: 1.1;
  margin: 0 auto; /* Center the button */
  padding: 15px 53px; /* Padding adjusted for text spacing */
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  word-break: break-word;
   width: 400px; /* Adjusted from 200px to 400px to double the width */
  max-width: 100%; /* Keeps the button responsive */
  /* Ensure other properties are unchanged */
}

  /* Animated gradient background */
  background: linear-gradient(-45deg, rgba(83, 51, 237, 1), rgba(129, 92, 246, 1), rgba(165, 134, 255, 1));
  background-size: 400% 400%;
  animation: Gradient 10s ease infinite;

  /* New width settings for uniform size */
  width: 200px; /* Fixed width for all buttons */
  max-width: 100%; /* Ensures button width is responsive and does not exceed its container's width */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .button {
    width: 180px; /* Slightly smaller width for smaller screens */
    padding: 10px 20px; /* Adjust padding to fit smaller screens */
    font-size: 0.82rem; /* Adjust font size for better readability on small devices */
  }
}

.button {
  /* Other styles */
  background: linear-gradient(-45deg, rgba(83, 51, 237, 1), rgba(129, 92, 246, 1), rgba(165, 134, 255, 1));
  background-size: 400% 400%;
  animation: Gradient 10s ease infinite;
  /* Ensure other properties are set as needed */
}


@keyframes Gradient {
  0% {background-position: 0% 50%}
  50% {background-position: 100% 50%}
  100% {background-position: 0% 50%}
}

.button:hover,
.button:focus {
  /* Slightly increase the brightness on hover/focus for a subtle effect */
  filter: brightness(110%);
}

.button:active {
  /* Slightly decrease the brightness on active for a subtle effect */
  filter: brightness(90%);
}

.button:disabled {
  /* Disabled state styles */
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
  animation: none; /* Stop animation for disabled buttons */
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.dnd-section > .row-fluid {
    text-align: center; /* Center inline or inline-block elements */
}

.dnd-section > .row-fluid .button-container {
    display: flex;
    justify-content: center; /* Center flex children horizontally */
    width: 100%; /* Ensure the container takes up full width */
}

.footer {
  display: none;
}