  .top-center-image {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: auto;
    margin-top: 15px;
  }

  body {
    /* background-color: #235db3; */
    background-image: url("rising-2025-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  header {
    margin-bottom: 200px;
    background-image: url("workday-logo.png");
    background-position: top right;
    background-repeat: no-repeat;
  }

  h1 {
    color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;

    /* Adding 0.5px stroke using text-shadow */
    text-shadow:
      -0.60px -0.60px 0 #000000,
      0.60px -0.60px 0 #000000,
      -0.60px 0.60px 0 #000000,
      0.60px 0.60px 0 #000000;
  }

  h2 {
    color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;

    /* Adding 0.5px stroke using text-shadow */
    text-shadow:
      -0.60px -0.60px 0 #000000,
      0.60px -0.60px 0 #000000,
      -0.60px 0.60px 0 #000000,
      0.60px 0.60px 0 #000000;
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    gap: 15px;
  }

  button {
    background-color: #fd7e00;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
  }

  button:hover {
    background-color: #FF9326;
  }

  button:active {
    background-color: #E67300;
  }

  .prompt {
    font-size: 18px;
    text-align: center;
    color: #000000;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
  }

  .containerHomeButtons {
    display: flex;
    flex-wrap: wrap;
    /* Wrap buttons onto multiple lines */
    justify-content: center;
    /* Horizontally center buttons */
    margin-left: 150px;
    margin-right: 150px;
  }

  .containerHomeButtons button {
    width: calc(25%);
    /* Calculate width based on container width */
    margin: 5px;
    /* Adds some spacing between buttons (optional) */
  }
