.events-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.event-card {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #bb6442;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    padding: 20px;
    gap: 25px;
    color: white;
    font-size: 30px;
    padding: 10px;
}

.event-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #ffffff;
}