/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    background-image: linear-gradient(to bottom, #f9f9f9, #f2f2f2); 
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #000000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
    font-style: italic;
    text-align: center;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #86342b;
    text-transform: uppercase; 
    text-align: center;
}



.event {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    max-width: 800px;
}

.event:hover {
    background-color: #f2f2f2;
    box-shadow: 0 0 20px rgba(110, 1, 1, 0.2); 
    transform: scale(1.1);
}

.event h2 {
    margin-top: 0;
    color: #17221c; /* Green color */
    font-size: 20px; /* Font size */
}

.event ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event li {
    margin-bottom: 10px;
    animation: fadeIn 1s; /* Fade in animation */
    font-size: 16px; /* Font size */
}

.event li strong {
    font-weight: bold;
    color: #333;
    font-size: 18px; /* Font size */
}

/* Webinar Styles */

.webinar {
    margin: 20px auto; /* Margin left and right */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s ease-in-out; /* Animation */
    transform: scale(1); /* Initial scale */
    max-width: 800px; /* Max width */
}

.webinar:hover {
    background-color: #f2f2f2; /* Light gray color on hover */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
    transform: scale(1.1); /* Zoom in animation */
}

.webinar h2 {
    margin-top: 0;
    color: #9b59b6; /* Purple color */
    font-size: 20px; /* Font size */
}

.webinar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.webinar li {
    margin-bottom: 10px;
    animation: fadeIn 1s; /* Fade in animation */
    font-size: 16px; /* Font size */
}

.webinar li strong {
    font-weight: bold;
    color: #333;
    font-size: 18px; /* Font size */
}

/* Main Heading Styles */

.main-heading {
    font-family: 'Playfair Display', serif; /* Playfair Display font */
    font-size: 48px;
    color: #000; /* Black color */
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .event, .webinar {
        margin: 10px auto;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .event, .webinar {
        margin: 5px auto;
        padding: 5px;
    }
}

/* Animation */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}