#animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#contact-container {
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

#contact-container h1 {
    color: #333;
    margin-bottom: 1rem;
}

#contact-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #00cc00;
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-button:hover {
    background-color: #00a000;
}

@media (max-width: 768px) {
    #contact-container {
        max-width: 90%;
        padding: 1.5rem;
    }
}