@import url("https://fonts.googleapis.com/css2?family=Niconne&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");

body {
  margin: 0;
  padding: 0;
}

.container1 {
  background-image: url(./assets/Webpage/BG.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#page1-top {
  width: 60%;
  margin-top: 10%;
}

#LD-page1 {
  width: 70%;
}

#text-page1 {
  width: 70%;
}

#input-text {
  color: white;
  font-size: 1.8rem;
  margin-top: 10%;
}

#mobileInput {
  width: 80%;
  height: 40px;
  background-color: transparent;
  border: 1px solid white;
  margin-top: 5%;
  color: white;
  font-size: 1.2rem;
  border-radius: 30px;
  text-align: center;
  margin-top: 10%;
}

#nameInput {
  width: 80%;
  height: 40px;
  background-color: transparent;
  /* border: 1px solid white; */
  margin-top: 5%;
  color: white;
  font-size: 1.2rem;
  border-radius: 30px;
  text-align: center;
  margin-top: 10%;
}

#page1-bottom {
  width: 90%;
  margin-top: 10%;
}

#page1-cta {
  width: 80%;
  margin-top: 10%;
  margin-bottom: 40%;
}

.container2 {
  /* background-color: grey; */
  background-image: url(./assets/Webpage/BG.jpg);
  /* height: 100vh; */
  padding-top: 8%;
  background-size: contain;
  background-position: center;
  display: none;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}

#image-wrap-poster {
  background-image: url(./assets/Output/outputImages/BG.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 360px;

  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;

  /* padding-left: 2%;
    padding-top: 5%; */

  /* justify-content: center; */
}

#htmltoimage {
  width: 90%;
  height: 360px;
  /* margin: auto; */
}

#coachingName-display {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  color: white;
  text-align: left;
  font-size: 1.1rem;
  text-transform: uppercase;
  max-height: 65px;
  overflow: hidden;
  /* border: 1px solid white; */
  width: 100%;
}

#presents {
  width: 85%;
  margin-top: 2%;
}

.page2-top-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 75%;
}

#mic {
  width: 15%;
}

.page2-top {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  padding-left: 3%;
  padding-top: 2%;
}

.page2-middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.middle-left {
  width: 45%;
  padding-left: 2%;
}

.middle-right {
  width: 55%;
}

.middle-left img {
  width: 100%;
}

.middle-right img {
  width: 100%;
}

.page2-bottom {
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  justify-content: center;
  /* margin-top: 10px; */
  margin-bottom: 50px;
  padding: 5px 10px;
}

.bottom-left {
  width: 45%;
  padding-left: 3%;
  margin-top: -8%;
}

.bottom-right {
  align-self: flex-start;
  width: 60%;
}

.bottom-left img {
  width: 100%;
}

.bottom-right img {
  width: 90%;
  transform: translate(10px, -15px);
}

#strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

#downloadButton {
  border-radius: 28px;
  height: 50px;
  width: 80%;
  background: #fff;
  color: #0d3366;
  cursor: pointer;

  margin-top: 5%;
}

.copyText {
  width: 90%;

  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  text-align: left;
  color: rgba(128, 128, 128, 0.74);
  margin-top: 5%;
  background-color: white;
  padding: 3%;
  border-radius: 5px;
}

#copyButton {
  border-radius: 28px;
  height: 50px;
  width: 80%;
  background: #fff;
  color: #0d3366;
  cursor: pointer;
  margin-bottom: 5%;
  margin-top: 5%;
}

#shareonWT {
  width: 90%;
  margin-top: 5%;
}

#snackbar {
  visibility: hidden;
  min-width: 150px;
  margin-left: -125px;
  background-color: rgba(51, 51, 51, 0.808);
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 7px;
  padding: 10px;
  position: fixed;
  z-index: 1;
  left: 58%;

  bottom: 50px;
}

#snackbar.show {
  visibility: visible;

  -webkit-animation: fadein 0.3s, fadeout 0.3s 1.5s;
  animation: fadein 0.3s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 50px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 50px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 50px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 50px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@media screen and (min-width: 375px) {
  #image-wrap-poster {
    height: 380px;
  }

  #htmltoimage {
    width: 90%;
    height: 380px;
    /* margin: auto; */
  }
}

@media screen and (min-width: 400px) {
  #image-wrap-poster {
    height: 420px;
  }

  #htmltoimage {
    width: 90%;
    height: 420px;
    /* margin: auto; */
  }
}

.register-button {
  border: none;
  padding: 5px 15px;
  background-color: white;
  font-weight: 500;
  border-radius: 2px;
  margin-left: 15px;
}
