html,body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roobert", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {

  background-color: #98d1cb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

div.catcontainer {
  max-width: 100vw;
  max-height: 100vh;
  width: 2560px;
  height: 2560px;
  aspect-ratio: 2560 / 2560;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

img.cat {
  max-width: 20%;
  max-height: 20%;
  width: auto;
  height: auto;
  aspect-ratio: 2560 / 2560;
  position: absolute;
  bottom: 0;
}

.left {
  left: 0;
}

img.left {
  max-width: calc((1277/2560) * 100%);
  max-height: calc((1561/2560) * 100%);
}

.right {
  right: 0;
}

img.right {
  max-width: calc((1285/2560) * 100%);
  max-height: calc((1572/2560) * 100%);
}

img.twitch {
  max-height: 100px;
  max-width: 100px;
  width: auto;
  height: auto;
  aspect-ratio: 2560 / 2560;
  margin: auto;
}

a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  padding: 16px;
}

a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

a > * {
  margin-top: 16px;
}