* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Montserrat", cursive;
  background: #ffebeb;
}
.intro {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.like {
  width: 100vw;
  height: 100vh;
  /* display: flex; */
  flex-direction: column;
  display: none;
}
.like p {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.container {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

h1 {
  color: #c20030;
  font-size: 64px;
}
p {
  color: #e41f7b;
  margin-top: 10px;
  word-wrap: break-word;
  font-size: x-large;
  letter-spacing: 3px;
  overflow: hidden;
}
.button-1 {
  width: 140px;
  height: 35px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #ffebeb;
  background-color: #33000d;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-top: 10px;
}

.button-1:hover {
  background-color: rgb(194, 0, 48);
  box-shadow: 0px 15px 20px rgba(194, 0, 48, 0.4);
  color: #fff;
}

.button-2 {
  /* width: 140px; */
  padding: 0px 10px 0px 10px;
  height: 35px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #ffebeb;
  background-color: #33000d;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.button-2:hover {
  background-color: rgb(194, 0, 48);
  box-shadow: 0px 15px 20px rgba(194, 0, 48, 0.4);
  color: #fff;
}

.letter {
  width: 600px;
  height: 400px;
  display: inline-block;
}

.rose-1 {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  display: inline-block;
  transform-origin: center center;
  /* animation: yidon 5s infinite; */
  /* transform: translateY(10%); */
}
.rose-2 {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  display: inline-block;
  transform-origin: center center;
  transform: rotate(25deg) translate(50px, 30px);
}
.rose-3 {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  display: inline-block;
  transform-origin: center center;
  transform: rotate(-25deg) translate(-50px, -30px);
}

.petal {
  width: 50px;
  height: 50px;
  background: #fe7696;
  border-radius: 0px 50%;
  position: absolute;
  box-shadow: 0 0 10px #d1123f;
  z-index: 2;
  transform-origin: bottom right;
  animation: zhankai2 10s infinite;
}

.petal:nth-child(2) {
  transform-origin: right bottom;
  transform: rotate(90deg);
  background: #fe7696;
  left: -10px;
  animation: zhankai1 10s infinite;
}

.petal:nth-child(3) {
  width: 40px;
  height: 40px;
  left: 10px;
  top: -20px;
  z-index: 1;
  background: #f03a64;
  transform-origin: bottom right;
  animation: zhankai2 10s infinite;
}

.petal:nth-child(4) {
  transform: rotate(90deg);
  width: 40px;
  height: 40px;
  left: 0px;
  top: -20px;
  z-index: 1;
  background: #f03a64;
  transform-origin: bottom right;
  animation: zhankai1 10s infinite;
}

.petal:nth-child(5) {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  left: 20px;
  top: -30px;
  z-index: 0;
  background: #d1123f;
}

.leaf {
  position: absolute;
  top: 120px;
  left: -115px;
}

.stem {
  width: 240px;
  height: 40px;
  background: transparent;
  border: 8px solid #8ac78a;
  border-color: #77a377 transparent transparent transparent;
  border-radius: 50% 50%;
  transform: rotate(100deg);
}

.leafs {
  width: 50px;
  height: 40px;
  border-radius: 0px 50%;
  background: #77a377;
  position: absolute;
  top: 0;
  left: 100px;
  z-index: 49;
}

.leafs:nth-child(2) {
  width: 40px;
  height: 20px;
  top: 40px;
  left: 140px;
  transform: rotate(120deg);
}

@keyframes yidon {
  25% {
    transform: translateY(-5%);
  }
  75% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes yidon-1 {
  25% {
    transform: translateY(-5%) rotate(15deg);
  }
  75% {
    transform: translateY(5%) rotate(15deg);
  }
  100% {
    transform: translateY(0%) rotate(15deg);
  }
}

@keyframes zhankai1 {
  50% {
    transform: rotate(110deg);
  }
  100% {
    transform: rotate(90deg);
  }
}

@keyframes zhankai2 {
  50% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
