  /* Quinzey Font */
  @font-face {
    font-family: 'Quinzey';
    src: url('../fonts/Quinzey.otf') format('opentype');
    font-weight: 200; /* ExtraLight */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Quinzey';
    src: url('../fonts/Quinzey_Medium.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Quinzey';
    src: url('../fonts/Quinzey_Bold.otf') format('opentype');
    font-weight: 900; /* Bold */
    font-style: normal;
  }
  
  /* Class for headings */
  .quinzey-headings-h3 {
    font-family: 'Quinzey', sans-serif;
    font-weight: 900; 
    letter-spacing: 2px; 
    color: #000; 
    font-size: 16px; 
    margin-top: 15px; 
    margin-left: -2em;
  }
  
  /* Class for thin text */
  .quinzey-thin {
    font-family: 'Quinzey', sans-serif;
    font-weight: 200; /* ExtraLight */
    letter-spacing: 2px; /* Adjust letter spacing as needed */
    font-size: 16px; /* Add font-size if needed */
  }
  
  /* Class for thinner text */
  .quinzey-thinner {
    font-family: 'Quinzey', sans-serif;
    font-weight: 900; 
    letter-spacing: 12px; 
    font-size: 24px;
  }
  
  .quinzey-headings-h4 {
    font-family: 'Quinzey', sans-serif;
    font-weight: 900; 
    letter-spacing: 2px; 
    color: #11dfdf;/* Green color */
    font-size: 48px; 
  }
  
  .quinzey-headings-h6 {
    font-family: 'Quinzey', sans-serif;
    font-weight: 900; 
    letter-spacing: 2px; 
    color: #007676;/* Green color */
    font-size: 20px; 
  }
  

/* Ensure the background is dark */
body {
    background: #1a1c2c;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  
  /* Fix home container alignment */
  .home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 88vh;
    width: 100vw;
    text-align: center;
  }
  
  /* Fix the Logo Size */
  .logo {
    width: 150px;
    margin-bottom: 20px;
    animation: logoPulse 2s infinite;
  }
  
 /* Ensure Montserrat Thin Italic is loaded */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,100&display=swap'); */

.welcome-message {
  font-size: 2.5rem;
  font-weight: 900; /* Thin */
  text-align: center;
  color: #11dfdf;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  font-style: italic;
}

  
  /* Fix Buttons */
  .button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  
  .role-button {
    background: linear-gradient(145deg, #008080, #006666);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    max-width: 320px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 102, 0.3);
    text-decoration: none; /* Removes underline */
  }
  
  .role-button:hover {
    background: linear-gradient(145deg, #009999, #007777);
    transform: scale(1.05);
  }
  
  /* Fix "View Other Roles" Button */
  .view-other {
    background: #333;
    color: white;
    border: 1px solid white;
  }
  
  .view-other:hover {
    background: #444;
  }
  
  /* Fix Login Text */
  .login-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ddd;
  }
  
  .login-link {
    color: #00CED1;
    text-decoration: underline;
  }
  
  /* Fix Animations */
  @keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .logo-animation {
    animation: logoPulse 2s ease-in-out infinite;
  }
  
  @media screen and (max-width: 576px) {
    .welcome-message {
      font-size: 2rem;
    }
}