html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px 10px;
    background-color: #EDEDED;
}

a {
    text-decoration: none;
}

nav {
    display: flex;
    flex-direction: row;
    height: 60px;
    padding: 10px 0px;
    gap: 10px;
    background-color: #FFF;
}

.navButton {
    display: flex;
    height: 64px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    background: #EDEDED;
    color: #000;
}

#translate {
    all: unset;
    height: 64px;
    padding: 0px 10px;
    background: #EDEDED;
}

#translate:hover {
    cursor: pointer;
}

#navLogo {
    width: 64px;
    padding: 0px 10px;
}


#intro {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#introText {
    display: flex;
    width: 630px;
    height: 500px;
    padding: 50px 10px;
    flex-direction: column;
    margin-right: 20px;
}

#introTitle {
    font-size: 56px;
    font-weight: 500;
}

#introText p {
    font-size: 20px;
}

#ticketsButton {
    display: flex;
    width: 200px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #000;
    color: #FFF;
}

.slide {
    display: none;
}

#dots {
    position: relative;
    bottom: 40px;
    left: 250px;
}

.dot {
    width: 20px;
    margin: 2px;
}

#geschiedenis {
    display: flex;
    flex-direction: column;
}

#geschiedenis h1 {
    font-size: 50px;
    font-weight: 700;
    margin: 0px;
}

#geschiedenis p {
    font-size: 20px;
    width: 797px;
    margin: 0px;
}

#reviewsHeader {
    width: 223px;
    height: 34px;
    font-size: 30px;
    margin-top: 100px;
}

#reviews {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
}

.review {
    display: flex;
    flex-direction: column;
    width: 500px;
    background: #D9D9D9;
    padding: 15px;
}

.reviewNaam {
    font-size: 20px;
    margin-top: 0px;
}

.review .reviewContent {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0px;
}

footer {
    display: flex;
    height: 300px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    background-color: #D9D9D9;
    margin-top: 100px;
}

#footerLogo {
    width: 198px;
    height: 90px;
    flex-shrink: 0;
}