/* style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.event-box {
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    background-color: #fff;
    width: 300px;
    text-align: center;
}

h2 {
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
