/* General body styles */
body {
    font-family: Arial, sans-serif; /* Fallback font stack */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    background-color: black; /* Set background color */
    color: white; /* Set default text color */
}

/* Animation for pulsing effect */
.animate-pulse {
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15; /* Start and end with low opacity */
    }
    50% {
        opacity: 0.3; /* Midpoint with higher opacity */
    }
}

/* Additional styles for specific elements can be added here */
h1 {
    margin-top: 20px; /* Space above the headline */
}

h2 {
    margin-top: 16px; /* Space above section headings */
}

p {
    margin-top: 6px; /* Space above paragraphs */
}

/* Button styles */
button {
    transition: background-color 0.3s ease; /* Smooth transition for button hover */
}

button:hover {
    background-color: #fbbf24; /* Change background color on hover */
}


a {
    display: inline-block;
    position: relative;
    z-index: 10;
}


/* Responsive styles can be added here if needed */
@media (max-width: 768px) {
    /* Styles for smaller screens */
    h1 {
        font-size: 24px; /* Decrease headline font size */
    }

    h2 {
        font-size: 20px; /* Decrease section heading font size */
    }

    p {
        font-size: 16px; /* Decrease paragraph font size */
    }
}
