body {
    margin: 0;
    height: 100vh;
    background-color: #0f6738;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin: 0;
    color: #d7a428;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

p {
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

a.ac-link {
    margin-top: 2rem;
    display: inline-block;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ff3b3b;
    text-decoration: none;
    border: 2px solid #ff3b3b;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    box-shadow: 0 0 8px #ff3b3baa;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

a.ac-link:hover {
    background-color: #ff3b3b;
    color: white;
    box-shadow: 0 0 12px #ff3b3bff;
}