body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000; /* Black background to emphasize the logo */
    font-family: Arial, sans-serif;
}

.logo-container {
    display: inline-block;
}

.logo {
    max-width: 300px; /* Adjust size as needed */
    animation: pulse-variation 6s infinite;
}

/* Randomized pulsing animation */
@keyframes pulse-variation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px 0 rgba(255, 255, 0, 0.5);
    }
    10% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(255, 255, 0, 0.7);
    }
    30% {
        transform: scale(1.1);
        box-shadow: 0 0 40px 10px rgba(255, 255, 0, 0.8);
    }
    40% {
        transform: scale(1.03);
        box-shadow: 0 0 15px 3px rgba(255, 255, 0, 0.6);
    }
    60% {
        transform: scale(1.08);
        box-shadow: 0 0 25px 7px rgba(255, 255, 0, 0.7);
    }
    80% {
        transform: scale(1.02);
        box-shadow: 0 0 10px 2px rgba(255, 255, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px 0 rgba(255, 255, 0, 0.5);
    }
}

/* Contact button container */
.contact-container {
    margin-top: 20px; /* Space between the logo and button */
}

/* Contact button styling */
.contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff4500, #ff6347); /* Reddish-orange gradient */
    color: #000; /* Black text for contrast */
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5); /* Subtle reddish-orange glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: pulse-variation 6s infinite; /* Same animation as the logo */
}

/* Button hover effect */
.contact-button:hover {
    transform: scale(1.15); /* Larger scaling on hover */
    background: linear-gradient(45deg, #ff6347, #ff4500); /* Reverse gradient direction */
    box-shadow: 0 0 30px rgba(255, 69, 0, 1); /* Much stronger glow */
}