/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    max-width: 400px;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Headings & Text */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    font-size: 15px;
    margin: 10px 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #ff5233;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #ff3000;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #0077B5;
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}

.social-links img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
