body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    background-color: #ffffff;
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 70px;
    border-bottom: #00a0e3 3px solid;
}
header h1 {
    margin: 0;
    text-align: center;
    padding-bottom: 20px;
}
.bg-container {
    position: relative;
    height: 150px;
    display: block;
}
.bg-container::before {
    content: "";
    background-image: url('./container_cpr.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.7;
}
@media screen and (min-width:475px) {
    .bg-container {
        height: 200px;
    }
    .bg-container::before {
        background-size: cover;
    }
}
@media screen and (min-width:715px) {
    .bg-container {
        height: 400px;
    }
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
#logo {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    height: auto;
}
#showcase {
    background-color: #00a0e3;
    text-align: center;
    color: #ffffff;
}
#showcase p {
    font-size: 20px;
    font-weight: bolder;
}
#main {
    padding: 20px;
    background-color: #ffffff;
    margin-top: 20px;
}
footer {
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}
.media-player {
    margin-top: 20px;
    margin-bottom: 20px;
}
iframe {
    max-width: 100%;
}
.gallery {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    flex: 0 0 auto;
}

.gallery-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
}

.gallery-item:hover::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 12px;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}