header {
    background-color: #FFFFF1;
    color: #FFC0CB;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    position: relative;
    z-index: 10;
}

.logo img {
    width: 150px;
    height: auto;
    margin-bottom: 0px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #FFC0CB;
    font-weight: bold;
    font-size: 25px;
    position: relative;
    z-index: 10;
}

body {
    margin: 0;
    padding: 0;
}

*{
  margin:0;
  padding:0;
}

*{box-sizing: border-box;}
.carousel {
  position: relative;

  width: 500px;
  height: 374px;
  overflow: hidden;
  .carousel-item {
    position: absolute;
    width: 100%;
    height: 270px;
    border: 0px solid #2e2e2e;
    top: 0;
    left: 100%;
    &.active {
      left: 0;
      transition: all 0.3s ease-out;
    }
    div {height: 100%;}
    .black {background-color: black;}
    .green {background-color: green;}
    .yellow {background-color: yellow;}
    .violet {background-color: violet;}
  }
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    background: linear-gradient(to bottom, #FFFFF1 0%, white 100%);
    z-index: -5;
}

.arrow {
    position: relative;
    margin-right: 0px;
    margin-left: 0px;
}

.noneone {
    height: 20px;
    background: #FFFFF1;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hello {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin-top: 50px;
}

.hellotitle {
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
    margin-bottom: 0x;
}

.hellocontent {
    display: flex;
    align-items: center;
    margin-top: 20px;
    max-width: 50%;
    overflow: hidden;
}

.helloimg {
    flex: 1;
}

.helloimg img {
    width: 275px;
    height: 275px;
    margin-right: 15px;
}

.hellotext {
    font-family: 'Quicksand', sans-serif;
}

.products {
  text-align: center;
  margin-top: 20px;
}

.productstitle {
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
}

.product {
  display: inline-block;
  margin: 20px;
  padding: 10px;
  border: 2px solid #FFC0CB;
  border-radius: 10px;
  max-width: 300px;
  font-family: 'Quicksand', sans-serif;
  background-color: #FFFFFF;
  cursor: pointer;
}

.product img {
  max-width: 100%;
}

.product h3 {
  margin-top: 10px;
}

.product p {
  font-size: 14px;
}

.flowers-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url('images/flowers-background5.png');
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
  z-index: -1;
}


.flowers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tutorial {
  text-align: center;
  margin-top: 20px;
}

.tutorialtitle {
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
}

.tutorialvideo {
    margin-top: -40px;
}

.insta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  margin-top: 20px;
}

#curator-feed-default-feed-layout {
    font-family: 'Quicksand', sans-serif;
    margin: 20px;
}

.instatitle {
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
}

.help {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.helptitle {
    margin-top: 20px;
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
}

.helptext {
    font-family: 'Quicksand', sans-serif;
    align-items: center;
    align-text: center;
    max-width: 50%;
}

.klantenservice-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ED89C5;
  color: #FFF;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 20px;
  font-family: 'Quicksand', sans-serif;
  transition: background-color 0.3s ease;
}

.klantenservice-button:hover {
  background-color: #FFC0CB;
  font-family: 'Quicksand', sans-serif;
  transition: background-color 0.3s ease;
}

.video-howto {
  width: 640;
  height: 480;
}

footer {
  background-color: #ED89C5;
  color: #FFFFFF;
  padding: 20px 0;
  font-family: 'Quicksand', sans-serif;
  margin-top: 20px;
  align-items: center;
  z-index: 1;
}

footer h3 {
  font-family: 'Dancing Script', semi-bold;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.quick-links {
  flex: 1;
}

.quick-links h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

.quick-links a {
  text-decoration: none;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #FFC0CB;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.navi a:hover {
  color: #ED89C5;
  transition: color 0.3s ease;
}

.navi {
     position: relative;
}