body {
    margin: 0;
    position: relative;
}

.activitiesHeader h2 {
    font-family: Righteous;
    font-size: 30px;
    text-align: left;
    padding-top: 15%;
}

.activitiesHeader h2 span {
    color: #0eb9e9;
}


main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 64px;
}

.carousel-arrow {
    display: flex;
    justify-content: center;
    top: 0;
    bottom: 64px;
    margin-block: auto;
    height: fit-content;
    width: 48px;
    background-color: white;
    border: none;
    font-size: 3rem;
    padding: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 100ms;
}

@media (max-width: 768px) {
    .carousel-arrow {
        display: none !important;
    }
}


.carousel-arrow:hover,
.carousel-arrow:focus {
    opacity: 1;
}

.carousel-arrow--prev {
    left: 0;
}

.carousel-arrow--next {
    right: 0;
}

.carousel-container {
    width: 100%;
    padding-block: 16px 32px;
    margin: 16px 48px;
    overflow-x: auto;
    display: flex;
    width: 100%;
    gap: 8px;
    align-items: center;
    scroll-snap-type: x mandatory;
    flex-flow: row nowrap;
    scroll-behavior: smooth;
}

.carousel-container::-webkit-scrollbar {
    height: 14px;
    width: calc(100% - 48px);
}

.carousel-container::-webkit-scrollbar-track {
    background: #b1b3b399;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: #0eb9e9;
}

.carousel-container::-webkit-scrollbar-track-piece:start {
    background: #0eb9e9;
}

.carousel-slide {
    flex: 1 0 100%;
    flex-flow: column nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

.carousel-slide img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 10px;
    background-color: #ffffff;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 600px) {
    .carousel-slide {
        flex: 1 0 90%;
    }
}