html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: black;
    /* fallback background */
    color: white;
}

/* Make sure the container takes all vertical space minus footer */
.landing-container {
    flex: 1;
    background: url('background.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.content {
    /* background: rgba(0, 0, 0, 0.4); */
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(245, 255, 92);
}

h2 {
    font-size: 2rem;
    margin: 1rem 0;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.write-to-us {
    font-size: 0.8rem;
    text-align: center;
    margin: 10px 0 10px;
    color: #e8e8e8;
}

.cta-button {
    background-color: #fdd85d;
    color: #1e1e1e;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #ffc400;
}

/* Footer */
.footer {
    background-color: #121212;
    text-align: center;
    color: #aaa;
    padding: 0.2rem 0;
    font-size: 0.6rem;
}