/*
  CSS RESET
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

img,
video {
  width: 100%;

}

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

/*
  STYLES
*/


@font-face {
  font-family: "victors";
  src: url("../fonts/victors.otf") format("opentype");
}


body {
  font-family: "victors";
}

p {
  width: 100%;
  font-size: 10px;
  max-width: 80ch;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 6rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-family: "victors";
}



/* body.startseite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 2rem;
  padding: 2rem;
  background-color: #ffffff;
  text-align: center;
} */


.gif-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.start-gif {
  width: 100px;          /* ca. 50% kleiner */
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
}

.knitting-cat {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 0%);
  line-height: 0;

  img {
    width: 10rem;
  }
}

@media (max-width: 420px) {
  .knitting-cat img {
    width: 10rem;
  }
}