:root {
  font-family:
    "Nunito Sans",
    -apple-system,
    Arial,
    sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

@keyframes swing-large-diag {
  from {
    background-position: -200% -200%;
  }

  to {
    background-position: 400% 200%;
  }
}

@keyframes swing-large-horizontal {
  from {
    background-position: 200% 200%;
  }

  to {
    background-position: -200% 200%;
  }
}

@keyframes swing-small {
  from {
    background-position: -50% 100%;
  }

  to {
    background-position: 100% -50%;
  }
}

body {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  min-height: 100vh;
  max-width: 64rem;
  margin: 0 auto;
  padding-bottom: 2rem;
  color: #222;
  overflow-x: hidden;
}

.shape {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  opacity: 50%;
  z-index: -1;
}

.anim-1 {
  animation: swing-large-diag 40s ease-in-out infinite alternate;
  background-size: 90% 90%;
}

.anim-2 {
  animation: swing-large-horizontal 30s ease-in-out infinite alternate;
  background-size: 80% 80%;
}

.anim-3 {
  animation: swing-small 20s ease-in-out infinite alternate;
  background-size: 60% 60%;
}

.shape-blue {
  background-image: radial-gradient(circle, #8349ff, transparent 50%);
}

.shape-red {
  background-image: radial-gradient(circle, #ff5ec6, transparent 50%);
}

.shape-green {
  background-image: radial-gradient(circle, #7ae5e5ff, transparent 50%);
}

@media (max-width: 640px) {
  body {
    margin: 0 0.5rem;
  }
}

#logo {
  font-size: 3rem;
  margin-top: 5rem;
  margin-inline: auto;
  display: inline-flex;
  gap: 1rem;
}

@media (max-width: 640px) {
  #logo {
    margin-top: 3rem;
    font-size: 2rem;
  }
}

#logo img {
  height: 1em;
  margin-block: 0.25rem;
}

h1 {
  font-size: 1em;
  line-height: 1.2em;
  margin: 0;
  padding: 0;
  hyphens: auto;
}

svg {
  left: 50%;
  margin-left: -60rem;
  margin-right: -60rem;
  position: relative;
  right: 50%;
  width: 120rem;
}

.wave {
  stroke: #2e3f6022;
  stroke-width: 2px;
  fill: none;
}

.bike {
  transform: translate3d(0, -11px, 0);
}

p {
  font-size: 18px;
  margin-block: 1.5rem;
}

.links {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: row;
  margin-bottom: 3rem;
}

.links a:focus {
  outline-color: #a5e860;
  outline-offset: 0;
  outline-style: solid;
  outline-width: 2px;
  box-shadow: 0 0 0 4px #6064ff;
}

.links a {
  outline: "none";
  color: black;
  display: inline-flex;
  gap: 0.25rem;
  max-width: 18rem;
  flex-direction: column;
  text-decoration: none;
  margin-inline: 0.25rem;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  transition:
    transform 0.3s,
    background 0.3s;
  animation: float 5s ease-in-out infinite;
  border-radius: 8px;
}

.links img {
  max-width: 100%;
}

.links-cards a {
  overflow: hidden;
  color: white;
  background: #202227;
  padding: 0.5rem 1rem;
  border-radius: 24px;
}

@media (max-width: 640px) {
  .links a {
    width: calc(50% - 3rem);
  }
}

.links-cards img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.links-support {
  width: 100%;
  flex-direction: row;
}

.links-support a {
  position: relative;
  color: black;
  background: white;
  align-items: center;
  font-weight: bold;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid lightgrey;
  width: 100%;
  display: inline-flex;
  flex-direction: row;
}

.links-support a:after {
  content: ">";
  font-family: Arial;
  font-weight: lighter;
  transform: scale(0.7, 1.3);
  position: absolute;
  right: 1rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.links a:hover {
  opacity: 0.85;
}

.links a:hover img {
  transition: transform 300ms;
  transform: scale(1.1);
}

.overflow-wrapper {
  overflow: hidden;
}
