body{
    margin: 0px;
    padding: 0px;
    background-color: #9E897A;
}

.landingSection{
    background-image: url(/images/Marlies1.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.Nav{
    background: linear-gradient(to bottom, rgb(0,0,0) 0%, rgba(255, 255, 255, 0)100%);
    height: 320px;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.unorderedList{
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
}

.listItem{
    list-style: none;
    transition: 0.5s ease;
}

.listItem:hover{
    transform: scale(1.05);
    letter-spacing: 5px;
}

.href{
 color: white;
 text-decoration: none;
}

.listText{
font-family: "urbanist";
font-size: 25px;
padding-left: 47px;
padding-right: 47px;
}

.trouwLogo{
    margin: 0px;
    padding: 0px;
    width: 700px;
    transition: 0.5s ease;
    max-width: 80%;
}


.trouwLogo:hover{
    transform: scale(1.05);
}

.textSection{
    background-color: #9E897A;
    display: flex;
    justify-content: center;
}

.textHolder{
    width: 50%;
    text-align: center;
}

.header1{
    padding: 0px;
    margin: 0px;
    color: white;
    font-family: "Rouge Script";
    font-weight: 100;
    font-size: 120px;
}

@media only screen and (max-width: 1500px) {

    .listText{
        font-family: "urbanist";
        font-size: 25px;
        padding-left: 30px;
        padding-right: 30px;
        }

    .header1{
        font-size: 100px;
    }

    }


@media only screen and (max-width: 1300px) {

    .landingSection{
        background-image: url(/images/Marlies1Mobile.png);
        background-size: cover;
        background-position: center;
    }

    .listText{
        padding-left: 0px;
        padding-right: 0px;
        margin: 0px;
        font-size: 30px;
    }

    .listItem{
        font-family: "urbanist";
        text-align: center;
        }

    .unorderedList{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        row-gap: 20px;
        padding-top: 20px;
    }

    .trouwLogoDiv{
        display: flex;
        justify-content: center;
    }

    .textHolder{
        width: 90%;
    }

    .header1{
        font-size: 75px;
    }

}

@media only screen and (min-width: 500px) {
#mobileHamburger{
  display: none;
}
}

    @media only screen and (max-width: 500px) {

        .listText{
            padding-left: 0px;
            padding-right: 0px;
            margin: 0px;
            font-size: 25px;
        }
    
        .listItem{
            font-family: "urbanist";
            text-align: center;
            }
    
        .unorderedList{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            row-gap: 20px;
            padding-top: 20px;
        }
    
        .header1{
            font-size: 70px;
        }

        /* MOBILE NAVIGATION */

         .unorderedList {
    display: none;
  }

.mobileHamburger{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  transition: 0.2s ease;
}

.hamburgerOpened{
height: 500px;
}

.Nav{
  top: 0px; /* Or 10px, etc. */
  z-index: 100;
}


.HamburgerContent{
  width: 75%;
  height: 100%;
  background-color: rgba(158, 158, 158, 0.103);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  border: solid 1px rgba(255, 255, 255, 0.219);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  overflow: hidden;
}

.hamburgerIcon{
  height: 50px;
}

.navClosed{
display: none;
}

.mobileNav ul{
  list-style: none;
  font-family: "urbanist";
  padding: 0px;
  text-align: center;
  font-size: 25px;
}

.mobileNav ul li{
margin-bottom: 10px;
}


}