* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  background-color: #eaf4f4;
  /* cursor: none; */
}

section {
  min-height: 100vh;
}

@font-face {
  font-family: "Inter Inox";
  src: url("./fonts/Inter_28pt-Black.ttf");
}

#ines {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 200vh;
}

h1 {
  font-family: "Inter Inox";
  font-size: 128px;
}

#ines .caca {
  display: block;
  padding-top: 200px;
}

#ines > h1 {
  z-index: 10;
  animation: bg-bounce 1s infinite;
  animation-delay: 0.5s;
}

#cacaprout > h1 {
  z-index: 10;
  position: relative;
}

@keyframes border-bounce {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: red;
  }
  100% {
    border-color: transparent;
  }
}

@keyframes bg-bounce {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: red;
  }
  100% {
    background-color: transparent;
  }
}

#ines img:hover {
  outline: 2px solid red;
  cursor: pointer;
}

.b {
  position: relative;
}

.a {
  position: absolute;
}
