body {
    background: white;
    color: black;
    text-align: justify;
    padding: 40px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
body {
    background: linear-gradient(160deg, #376E9C 0%, #225076 100%);
    min-height: 100%;
    background-attachment: fixed;
}
h1 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-weight: 350;           /* lighter style matches screenshot */
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;        /* optional, matches their spacing */
}

.highlight-green {
    color: #5CB75A;
}
.container {
    max-width: 450px;
    margin: 0 auto;
}
.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
    margin-bottom: 90px;
}
.centered-image img {
    max-width: 200px;
    height: auto;
}
.centered-button {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.centered-button button {
    padding: 12px 32px;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    background: #ff4444;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.centered-button button:hover {
    background: #d32f2f;
}

.typewriter-cursor {
  color: #d32f2f;
  font-weight: 400;
  animation: blink-cursor 0.7s steps(1) infinite;
  margin-left: 2px;
}

.typed-cursor {
  color: #d32f2f;  /* same red as your button */
  font-weight: 400;
}
