body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    color: #ffffff;
}

.container1 {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #8f61aa77;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    color:white;
}

.event {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.event h2 {
    font-size: 1.8em;
    color: #4caf50;
}

.date {
    font-size: 1.2em;
    color: #1e90ff;
}

.description {
    font-size: 1em;
    color: #d3d3d3;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #246307;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #e5533c;
    transform: scale(1.05);
}