.section-heading {
    text-align: center;
    font-size: 80px;
    font-family: 'section-heading';
    margin: 100px;
}

.news {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsbox {
    width: 50vw;
    height: 60vh;
    box-shadow: 0px 0px 12px black;
    position: relative;
    border-radius: 4px;
}

.newsfield {
    border-radius: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s;
}

.newsfield-picture {
    width: 100%;
}

.newsfield-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 75%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    font-family: 'Roboto';
    padding: 20px 12% 20px 12%;
}

.newsfield-headline {
    font-size: 1.8em;
    margin: 10px 0;
}

.newsfield-description {
    font-size: 1.2em;
    margin: 0;
}

.arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 50px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    color: rgba(255, 255, 255, 0.5);
    user-select: none;
    cursor: pointer;
}

.arrow:hover {
    color: white;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.indicatorlist {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    list-style-type: none;
    font-size: 40px;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.indicator {
    padding: 0 10px;
    user-select: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 2s;
}

.active {
    opacity: 1;
}

.overme {
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: 'Roboto';
    font-size: 20px;
}

.overme-text {
    width: 30vmax;
}

.overme-heading {
    font-size: 30px;
    font-weight: bold;
    font-family: 'section-heading';
}

/*"pOTM" stands for "photoOfTheMonth"*/
.pOTM_image_container {
    text-align: center;
}

.pOTM_img {
    max-width: 60%;
	max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0px 0px 12px black;
}

.pOTM_description {
    display: flex;
    justify-content: center;
    margin-left: 450px;
    margin-right: 450px;
    margin-top: 30px;
    font-family: 'Roboto';
    font-size: 20px;
}

.red-lines-up-to-down {
    height: 150px;
    text-align: center;

}

.red-lines-up-to-down img {
    height: 400px;
}

/*style for horizontal scroll gallery*/

.scroll-gallery {
    left: 0;
    right: 0;
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.scroll-gallery-card {
    height: 500px;
    min-width: 300px;
    margin: 50px;
    color: white;
    border-radius: 15px;
    flex-shrink: 0;
    text-align: center;
    scroll-snap-align: start;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.scroll-gallery-card:hover {
    transform: scale(1.01);
    cursor: pointer;
}

.scroll-gallery-card img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}