header .hero {
    background-image: url("/static/guests/img/banner.a2a98be5c621.jpg");
}

header .hero-text {
    top: 15vh;
    font-size: 20pt;
    color: white;

    h1 {
        font-size: 55pt;
    }

    h2 {
        font-weight: 600;
    }

    h3 {
        font-weight: 200;
    }
}


#venue>.content>* {
    font-size: 18pt;
    text-align: center;
}

#venue>.content>*:first-child {
    margin-bottom: 25px;
}

#venue b {
    font-size: 20pt;
}

#venue img {
    margin: auto;
}

#itinerary .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#itinerary h3 {
    margin-bottom: 25px;
}

#itinerary table {
    margin: 0 auto 0 auto;
    font-size: 18pt;
}

#itinerary table td {
    width: 50%;
    padding: 20px;
}

#itinerary table td:nth-child(odd) {
    text-align: right;
    border-right: 2.5px solid #000;
    padding-right: 20px;
}

#itinerary table td:nth-child(even) {
    text-align: left;
    padding-left: 20px;
}

#itinerary p {
    margin-top: 30px;
    margin-bottom: 10px;
}

#faq section {
    font-size: 18pt;
    margin-bottom: 25px;
}

#faq>section>h3 {
    margin-bottom: 0;
}

/* Slideshow */
/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
    width: 80%;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: 50vh;
    object-fit: contain;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}