@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 2.5% 10% 0% 10%;
}
p {
  font-size: 1.25rem;
}
.info {
}
.container {
  position: relative;
  height: 60vh;
  width: 100%;
  text-align: center;
  background-image: url("../Images/body-8782296_1920.png");
  background-position: center/cover;
  background-repeat: no-repeat;
}

.engine {
  position: absolute;
  top: 47%;
  left: 50%;
}
.heart1 {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid black;
  left: 25px;
  box-shadow: 0 0 0 10px #fff, 0 0 0 12px#A99BA2;
  background: radial-gradient(
    white 33%,
    rgb(248, 193, 202) 66%,
    rgb(246, 162, 176)
  );
  z-index: 1;
}
.heart2 {
  position: absolute;
  top: 13px;
  left: 33px;
  width: 189px;
  height: 180px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(red 33%, rgb(246, 162, 176) 66%);
  z-index: 2;
  animation: rotate 2s 0s ease-in-out infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.9);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.muscle {
  position: absolute;
  top: 37%;
  left: 50%;
  width: 200px;
  height: 70px;
  background-color: black;
  border-radius: 5%;
  border-bottom-right-radius: 60%;
  border-top-right-radius: 60%;
  animation: muscleMove 4s 0s linear infinite;
}

@keyframes muscleMove {
  0% {
    transform: translateX(-60px) translateY(0px) rotate(10deg);
  }
  50% {
    transform: translateX(60px) translateY(20px) rotate(20deg);
  }
  100% {
    transform: translateX(-60px) translateY(0px) rotate(10deg);
  }
}

#btn {
  text-decoration: none;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  background-color: rgb(249, 219, 224);
  border-radius: 40em;
  border-style: none;
  box-shadow: rgb(235, 155, 168) 0 -20px 10px inset;
  box-sizing: border-box;
  color: #000000;
  letter-spacing: -0.25px;
  padding: 0.5rem 1.4rem;
  text-align: center;
  transition: all 0.15s;
  cursor: pointer;
}

#btn:hover {
  color: white;
  background-color: rgb(246, 130, 149);
  box-shadow: rgb(135, 86, 94) 0 -6px 8px inset;
  transform: scale(1.1);
}

#btn:active {
  transform: scale(1.1);
}
#video {
  cursor: pointer;
}
#video:hover {
  color: rgb(239, 100, 124);
  font-weight: bold;
}
