body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

#eventContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.content {
    width: 60%;
    padding-right: 20px;
}

h1, h2, h3 {
    color: #0a2c77;
}

.myp {
    margin-top: 20px;
    margin-bottom: 20px;
}

.cal-h1 {
    font-size: 2em;
    color: #0047ab;
    text-align: center;
    margin-bottom: 20px;
}

.image-container {
    width: 40%;
}

.image-container img {
    width: 100%;
    border-radius: 8px;
    display: none;
}


.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-text {
    font-size: 16px;
    color: #002F6C; /* Dark blue color */
    text-align: center;
    margin-bottom: 20px;
}

.share-button {
    background: transparent;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: black;
    color: white;
}

.main-text {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.main-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.main-text strong {
    color: #0056b3;
}
