* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.background {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; 
    object-fit: cover;
}

.lspu {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 55px; 
    height: auto;
}

.ccs {
    position: absolute;
    top: 10px;
    left: 90px;
    width: 55px; 
    height: auto;
}

nav {
    margin: 10px auto;
    position: relative;
    width: 575px;
    height: 50px;
    background-color: #952323;
    border-radius: 8px;
    font-size: 0;
}

nav a {
    line-height: 50px;
    height: 100%;
    font-size: 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: white;
    cursor: pointer;
}

a {
    width: 115px;
}

#nav-animation {
    width: 100px;
    left: 0;
}

nav a:hover{
    background-color: antiquewhite;
    color: #952323;
}

.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}

.announcement {
    font-size: 60px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin-bottom: -40px;
    transition: text-shadow 0.3s ease-in-out;
}

.announcement:hover {
    text-shadow: 0 0 10px #2c2929, 0 0 20px #2c2929, 0 0 30px #2c2929;
}


.events {
    display: flex;
    justify-content: center;
}

.events ul {
    list-style-type: none;
    padding: 20px;
}

.events li {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: white;
    margin: 10px 0;
    width: 80%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    left: 10%;
}

.events li:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.time {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.time span {
    font-size: 16px;
    color: #666;
}

.details h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.details a {
    font-size: 16px;
    color: #952323;
    text-decoration: none;
    border: 1px solid #952323;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.details a:hover {
    background-color: #952323;
    color: white;
}