body {
    margin: 0;
    height: 100vh;
    background-color: #c20000;
    color: #fff;
    font-family: 'Arial Black', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px #000;

}

p {
    font-size: 1.2rem;
    max-width: 600px;
    font-family: 'Poppins', sans-serif;

}

img {
    max-width: 300px;
    margin: 2rem 0;
}

a.ac-link {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #8b1c00;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: border-radius 0.15s ease, background-color 0.15s ease;
}

a.ac-link:hover {
    border-radius: 22px;
}

.quote {
    margin-top: 1.5rem;
    font-style: italic;
    font-size: 0.9rem;
    color: #e4e4e4;
}