* {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
}

p,
li {
  color: rgb(140, 140, 140);
}

.hiddenOverlay.showOverlay {
  display: flex;
}

.hiddenOverlay {
  display: none;
}

#overlay {
  background-color: rgba(0, 0, 0, 0.45);
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

#member {
  background-color: #fff;
  align-self: center;
  height: 500px;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#member h3 {
  align-self: center;
  text-align: center;
  padding: 10px;
  margin-top: 25px;
  font-size: 30px;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  color: hotpink;
}

#member button {
  background-color: hotpink;
  align-self: center;
  height: 70px;
  width: 250px;
  border-style: none;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  font-size: 25px;
  color: rgb(255, 236, 239);
}

#member button:hover {
  background-color: rgb(255, 236, 239);
  color: hotpink;
}

#member button:active {
  background-color: rgb(0, 191, 255);
  color: #fff;
}

#member img {
  align-self: flex-end;
  width: 90%;
}

header {
  position: fixed;
  background-color: #fff;
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 10px solid rgb(255, 236, 239);
}

.headCont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 130px;
}

#basket {
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
}

#basket img {
  align-self: center;
  width: 35px;
  height: 35px;
}

#basketCountRound {
  margin-left: 50px;
  position: fixed;
  background-color: pink;
  padding: 10px;
  align-self: center;
  display: flex;
  justify-content: center;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

#basketCount {
  align-self: center;
  font-weight: 700;
  font-style: normal;
  color: #fff;
}

#mainHeader {
  align-self: center;
  margin-left: 2%;
  font-size: 25px;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
}

#mainHeader a {
  text-decoration: none;
  color: hotpink;
}

.sideMenu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.menu {
  position: fixed;
  background-color: #f7f7f7;
  margin-top: 60px;
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: flex-start;
  border-top: 10px solid rgb(255, 236, 239);

  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.show {
  transform: translateX(0%);
}

#burgMenu {
  height: 50px;
  width: 50px;
  background-color: #fff;
  border: none;
  display: block;
  font-size: 25px;
  margin: 5px;
  padding: 10px;
  font-weight: 500;
  cursor: pointer;
}

.menu ul {
  margin-top: 10%;
  width: 100%;
}

.menu li {
  list-style: none;
  margin-bottom: 5px;
}

.menu a {
  color: hotpink;
  display: block;
  width: 100%;
  padding: 5%;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.menu a:hover {
  color: #fff;
}

#main {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.container {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 70px;
}

.indLogo {
  margin-top: -60px;
  width: 100%;
}

.indContent {
  display: flex;
  flex-direction: column;
  margin-bottom: 150px;
}

.container h2 {
  align-self: center;
  margin-bottom: 20px;
  font-size: 35px;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  color: hotpink;
}

.indContent p {
  align-self: center;
  padding: 0px 50px 0px 50px;
  width: 50%;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

#callToAct {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 100px;
}

#callToAct h2 {
  margin-bottom: 25px;
}

#callToAct img {
  align-self: center;
  width: 400px;
  margin-bottom: 25px;
}

#callToAct p {
  align-self: center;
  padding: 0px 50px 0px 50px;
  width: 50%;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  padding-bottom: 50px;
}

#callToAct button {
  background-color: hotpink;
  align-self: center;
  height: 70px;
  width: 250px;
  border-style: none;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  font-size: 25px;
}

#callToAct button:hover {
  background-color: rgb(255, 236, 239);
}

#callToAct button:active {
  background-color: rgb(0, 191, 255);
}

#callToAct a {
  text-decoration: none;
  color: rgb(255, 236, 239);
}
#callToAct a:hover {
  color: hotpink;
}
#callToAct a:active {
  color: #fff;
}

/* Style for products */

.candCards {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.theCandy {
  flex: 0 0 450px;
  background-color: pink;
  padding: 10px;
  margin: 10px;
}

.theCandy img {
  width: 100%;
  margin-bottom: 10px;
}

.theCandy h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.candTitle {
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  color: hotpink;
}

/* Style for purchase */
.purchase {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  margin-top: 10px;
  padding: 4px;
  width: 150px;
  height: 25px;
}

.purchase button {
  display: block;
  border: none;
  width: 35px;
  padding: 4px;
}

.counter {
  align-self: center;
  font-weight: 700;
  font-style: normal;
}

.purchase button:hover {
  background-color: hotpink;
}

.purchase button:active {
  background-color: white;
}

.buyIt {
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
}

/* style for footer */

footer {
  background-color: rgb(255, 236, 239);
  width: 100%;
  height: 300px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

#footerLeft {
  padding: 5px;
  margin-left: 70px;
}

#footerLeft h3 {
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  color: hotpink;
}

#footerLeft li {
  list-style: none;
  margin-bottom: 3px;
}

#footerRight {
  display: flex;
  justify-content: space-around;
}

#footerRight h3 {
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  color: hotpink;
}

#footerRight li {
  list-style: none;
  margin-bottom: 3px;
}

#innerRight1 {
  height: 160px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
  margin: 5px;
}

#innerRight2 {
  height: 160px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 5px;
}

/* style for contactformular */

#contact {
  display: flex;
  justify-content: center;
}

#contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
}

#contact-form label {
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  color: hotpink;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 20px;
}

#contact-form .inputFill {
  margin-bottom: 15px;
  border-style: solid;
  border-width: 4px;
  border-color: rgb(255, 236, 239);
  padding: 3px;
  width: 50%;
}

#contact-form textarea {
  height: 350px;
  border-style: solid;
  border-width: 4px;
  border-color: rgb(255, 236, 239);
  padding: 5px;
}

#contSend {
  background-color: hotpink;
  align-self: flex-start;
  height: 35px;
  width: 100px;
  margin-top: 25px;
  border-style: none;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: rgb(255, 236, 239);
}

#contSend:hover {
  background-color: rgb(255, 236, 239);
  color: hotpink;
}

#contSend:active {
  background-color: rgb(0, 191, 255);
  color: #fff;
}

.contPara {
  margin-top: 25px;
  margin-bottom: 50px;
}
