* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    /*background-image: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);*/
    background-color: #000;
    color: #fff;
}


.Intro {
    width: 1200px;
    height: 500px;
    padding: 100px 50px;
}

.names {
  font-size: 200px;
}

.name {
  color: #ff2e74;
  font-family: Lucida Handwriting;
  font-weight: bold;
  position: absolute;
  top: 130px;
  left: 100px;
}

/*animation: example 2s linear 0s infinite alternate;*/

.name li {
  font-size: 120px;
  transition: 2s;
  animation: lettersOne 3s forwards 2s ease-in;
}

 .names li {
  opacity: 0;
}

.namesTwo li {
  transform: rotate(45deg) translateY(-200px);
  opacity: 0;
}


.nameTwo {
  color: #ff2e74;
  font-family: Lucida Handwriting;
  font-weight: bold;
  position: absolute;
  top: 220px;
  left: 150px;
}

.nameTwo li {
  font-size: 120px;
  animation: lettersOne 6s forwards 2s ease-in;
} 

@keyframes lettersOne {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

ul li:nth-child(1) {
  animation-delay: 0.2s;
}

ul li:nth-child(2) {
  animation-delay: 0.4s;
}

ul li:nth-child(3) {
  animation-delay: 0.8s;
}

ul li:nth-child(4) {
  animation-delay: 1.2s;
}

ul li:nth-child(5) {
  animation-delay: 1.6s;
}

ul li:nth-child(6) {
  animation-delay: 2.0s;
}

ul li:nth-child(7) {
  animation-delay: 2.4s;
}


@keyframes beating {
  0% {transform: scale(1);}
  25% {transform: scale(1);}
  30% {transform: scale(1.4);}
  50% {transform: scale(1.2);}
  70% {transform: scale(1.4);}
  100% {transform: scale(1);}
}


ul {
    position: absolute;
    top: 10px;
    left: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

li {
    list-style: none;
    font-size: 30px;
    margin: 15px;
}

li a {
    color: #ff2e74;
    text-decoration: none;
}

li a:hover {
    opacity: 0.7;
}

li span {
  color: #ff2e74;
}

img {
    width: 35%;
}


p {
    margin: 300px 100px 50px;
}

.em {
  width: 100%;
  height: 100%;
}


.memoji {
  position: absolute;
  width: 18%;
  right: 8%;
}



  .nav__link {
    color: inherit;
    font-weight: var(--fw-bold);
    font-size: var(--fs-h2);
    text-decoration: none;
}

.nav__link:hover {
    color: var(--clr-accent);
}

footer {
  background-color: #331;
  color: #ff2e74;
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;

}
