@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
}

.main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

html,
body {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease;
  animation: changeColor 10s infinite;
  font-family: "Inter";
  overflow-x: hidden;
}

.main marquee {
  width: 400px;
  height: 100px;
}

.main img {
  transition: all 0.2s ease;
  animation: borderRadius 1s infinite;
  height: 400px;
}

span {
  width: 500px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@keyframes borderRadius {
  0% {
    border-radius: 0px;
  }

  50% {
    border-radius: 100px;
  }
  100% {
    border-radius: 0px;
  }
}

@keyframes changeColor {
  0% {
    background-color: red;
  }

  10% {
    background-color: rgb(240, 61, 240);
  }
  20% {
    background-color: rgb(61, 94, 240);
  }
  30% {
    background-color: rgb(61, 240, 210);
  }
  40% {
    background-color: rgb(240, 142, 61);
  }
  50% {
    background-color: rgb(0, 6, 83);
  }
  60% {
    background-color: rgb(153, 105, 105);
  }
  70% {
    background-color: rgb(255, 255, 255);
  }
  80% {
    background-color: rgb(61, 240, 142);
  }
  90% {
    background-color: rgb(134, 4, 113);
  }
  90% {
    background-color: rgb(95, 10, 10);
  }
}

.navbar {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10000;
}

.logo {
  margin-left: 40px;
}

.navigation {
  margin-right: 40px;
  display: flex;
  gap: 20px;
}

.main-dominance {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 200;
}

.main-dominance h1 {
  font-family: "Bodoni Moda", serif;
}

.image-dominance img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.main-dominance strong {
  animation: move 2s ease infinite;
  font-size: 63px;
}

.btn button {
  padding: 15px;
  border-radius: 23px;
  border: 1px solid black;
  background-color: aquamarine;
  transition: all 0.2s ease;
}

.btn button:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.runCapybara {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  align-content: center;
  position: absolute;
  z-index: 2;
}

.runCapybara img {
  position: relative;
  left: 400%;
}

.runCapyAnimation {
  animation: run 2s ease;
}

.footer {
  width: 100%;
  height: 500px;
  margin-top: 100px;
  background-color: white;
  padding-left: 40px;
  padding-top: 40px;
}

.wrap23 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asfa {
  margin-top: 30px;
}

.main-not-found {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.wrap54 {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.wrap54 h1 {
  width: fit-content;
}
.wrap54 span {
  width: fit-content;
}
.wrap54 a {
  width: fit-content;
  text-decoration: underline;
}

@keyframes run {
  0% {
    left: 300%;
  }

  50% {
    left: -200%;
  }

  100% {
    left: -300%;
  }
}

@keyframes move {
  0% {
    margin-top: 8px;
  }

  50% {
    margin-top: -4px;
  }

  100% {
    transform: rotate(360deg);
  }
}
