:root {
  --primary-color: antiquewhite;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

body {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.body{
  background: var(--primary-color);
}

.heart1{
  width: 25px;
  height: auto;
}

.main-heart{
  width: 150px;
  height: auto;
  cursor: pointer;
}

.first-section{
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: var(--primary-color);
  top: 0;
  left: 0;

  justify-content: center;
  align-items: center;
  display: flex;

}

.first-section p{
  font-size: 50px;
  border-bottom: solid red 2px;
}

.second-section h1{
  font-size: 50px;
  white-space: nowrap;
}

.second-section{
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100vh;
  width: 100vw;
  visibility: visible;
  opacity: 0;
  transition: all 2s;
}

.second-section.show{
  opacity: 1;
}

.heart-second{
  width: 125px;
  height: auto;
}

.hidde{
  display: none;
}

.second-section .one{
  display: flex;
  justify-content: center;
  align-content: start;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
  height: 10%;
}

.second-section .two{
  display: inline-block;
  padding-top: 80px;
  width: 70%;
  height: 90%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.second-section .two h2{
  width: 100%;
  text-align: center;
  font-size: 50px;
}

.second-section .two p{
  overflow: hidden;
  padding: 40px;
  padding-top: 0 !important;
  margin-top: 0 !important;
  width: 100%;
  opacity: 0;
  transition: all 2s;
  font-size: 50px;
  text-align: justify;
}

.second-section .two p.start-whiting{

  opacity: 1;
}

.second-section .three{
  display: inline-flex;
  justify-content: center;
  align-items: end;
  flex-wrap: wrap;
  width: 30%;
  height: 90%;
  position: relative;
}
.second-section .three .mask{
  position: absolute;
  height: 100%;
  width: 100%;
  transition: all 4s;
  z-index: 9999;
  background: var(--primary-color);
  top: 0;
}

.second-section .three .mask.show{
  height: 0;
}

.img-alt{
  position: absolute;
  bottom: 119px;
  width: 100%;
}

.tree{
  width: 574px;
  height: 611px;
}

.heart-ico{
  position: absolute;
  width: 25px;
  height: 30px;
  opacity: 0;
  transition: all 2s;
}

.content-hearts{
  position: absolute;
  bottom: 195px;
  width: 467px;
  height: 419px;
  transform: translateX(-20px);
}

.heart-ico-fall{
  will-change: transform;

  transition: none !important;
  animation: fall 3s linear infinite;
}

@keyframes fall {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {

    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(-30vw, 800px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes writing {
  from { width: 0; }
  to { width: 100%; }
}
