
/* reset.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* style.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
}

header {
    background-color: #00B3B3;
    color: white;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

header .cta-button {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: white;
    color: #00B3B3;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

header .cta-button:hover {
    background-color: #e0f7fa;
}

header img {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
}

section {
    padding: 2rem;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    color: #00B3B3;
    margin-bottom: 1.5rem;
}

.event-poster {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
}

.speaker-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.card h3 {
    color: #00B3B3;
}

/* Remove list styling */
ul {
    list-style-type: none;
}

footer {
    background-color: #00B3B3;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
}
