/*landing section*/
.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1100px;
  margin-bottom: 30px;
}
.photo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1050px;
  height: 556px;
  background-image: url("../images/startseite/titlephoto.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}
.marginbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 210px;
  background-color: rgba(255, 255, 255, 0.7);
}
.whitebox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 190px;
  border: 1px solid lightgray;
}
.whitebox h1 {
  font-family: "CaneletterScriptThin";
  font-size: 3.7rem;
}
/*little nav section*/
.littlenav {
  display: flex;
  justify-content: space-around;
  width: 900px;
  margin-bottom: 30px;
}
.flowerbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 215px;
  height: 95px;
}
.whitebackground  {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 183px;
  height: 73px;
  background-color: #fff7fd;
}
.whitebackground h2 {
  font-family: "CaneletterScriptThin";
  font-size: 3rem;
  color: black;
}
.hell {
  background-image: url("../images/startseite/lila_hell.jpg");
}
.dunkel {
  background-image: url("../images/startseite/lila_dunkel.jpg");
}

/*pieces section*/
.favourites {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 1050px;
  background-color: rgba(202, 176, 203, 0.8);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.favourites h2 {
  width: 100%;
  font-family: "ohdarling";
  font-size: 2.3rem;
  padding: 35px 0px 20px 0px;
}
.favourites h1 {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 100;
  text-transform: uppercase;
  word-spacing: 0.4em;
  padding-bottom: 30px;
}
.favouritesbox {
  width: 200px;
  height: 250px;
}
.favouritesbox img {
  width: 200px;
  height: 200px;
  border: 1px solid white;
}
.name {
  font-size: 1.1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  padding: 0px;
  margin-top: 5px;
}
.name::first-letter {
  font-size: 1.4rem;
}

/*instagram section*/
.instagram {
  width: 1050px;
  margin-bottom: 35px;
}
.instagram h1 {
  font-family: "CaneletterScript";
  font-size: 2.5rem;
  padding: 30px 0px 25px 0px;
}
.instapics {
  display: flex;
  justify-content: space-around;
}
.instapics img {
  width: 190px;
  height: 190px;
}

/* MEDIA QUERY */
/* Tablet - less than 1024px */
@media only screen and (max-width: 1093px) and (min-width:590px) {
  .photo {
    width: 800px;
    height: 423px;
  }

}

/* mobile phone - less than 590px */
@media only screen and (max-width: 590px) {
  .photo {
    background-image: url("../images/startseite/titlephotosmall.png");
    width: 400px;
    height: 212px;
  }
  .marginbox {
    display: none;
  }
  .whitebox {
    display: none;
  }
  .littlenav {
    flex-wrap: wrap;
  }
  .flowerbox {
    margin-bottom: 15px;
  }
  .instapics {
    flex-wrap: wrap;
  }

}
