/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  h1, p {
    text-align: center;
  }
  
  .card p {
    text-align: left;
  }
  
  /* Main container */
  article#main-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  #instructions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
    margin-bottom: 50px;
  }
  
  #instructions h1 {
    align-self: center;
  }
  
  #instructions p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555555;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
  }
  
  #cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
  }
  
  /* Cards */
  .card {
    position: relative;
    width: 300px;
    height: 400px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    background-color: rgb(26, 26, 26);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
  }
  
  .card a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-decoration: none;
  }
  
  .card .subtext {
    font-size: 18px;
    font-weight: lighter;
    margin-top: 5px;
  }
  
  .card div {
    text-align: left;
    padding: 20px;
    font-size: large;
  }
  
  .card p.name {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .card p.strong {
    font-weight: normal;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .card .superpower-text {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
  
  /* Buttons */
  #start-button,
  #superpowers-button {
    display: block;
    width: 200px;
    height: 50px;
    margin: 10px auto;
    font-size: 18px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #start-button:hover,
  #superpowers-button:hover {
    background-color: #0d47a1;
  }
  
  /* Footer */
  footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
  }
  
  /* Media queries */
  @media (max-width: 768px) {
    /* Adjustments for tablets and smaller screens */
    #instructions p {
      font-size: 16px;
    }
  
    .card {
      width: 250px;
      height: 350px;
      font-size: 20px;
    }
  }
  
  @media (max-width: 480px) {
    /* Adjustments for mobile devices */
    #instructions p {
      font-size: 14px;
      padding: 10px;
    }
  
    .card {
      width: 200px;
      height: 300px;
      font-size: 16px;
      margin: 5px;
    }
  
    #cards-container {
      margin-top: 20px;
    }
  
    #start-button,
    #superpowers-button {
      width: 150px;
      height: 40px;
      font-size: 16px;
    }
  }

#prompt {
    display: none;
}
