
body{
    margin: 0;
    padding: 0;
    align-items: center;
    background: #0000;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #0000;
}

.logo{
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.social-icons img{
    width: 20px;
    height: 20px;
    margin-left: 15px;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-size: 14 px;
    transition: 0.3s;
}

.menu a:hover {
    color: #f00;
}

.upcoming-events {
    margin: 100px 0 0 200px;
    width: 70%;
    height: 450px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.upcoming-events img {
    width: 25%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #fff ;
    transition: all ease-in-out 0.5s ;
}

.upcoming-events img:hover {
    width: 50%;
}

.contact-info {
    margin: 0;
    padding: 0;
    align-items: center;
    background: #0000;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
}