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

body {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#menu {
    transform: translate(3px, -20px);
    text-align: left;
    font-size: 100px;
    font-family: Helvetica, Verdana, sans-serif;
    font-weight:lighter;
    color:  black;
    rotate: -6deg;
    font-size: 100px;
}

#mousei, #mousecopy, #mousescreen, #mouseauthor, #mouseartist, #mousemail {
  display: inline-block;
  position: relative;
  z-index: 1;
}

a #mousei, #mousecopy, #mousescreen, #mouseauthor, #mouseartist, #mousemail {
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-underline-offset: 7px;
    color: black;
}

a #mousei:hover {
  transform: rotate(25deg);
}

a #mousecopy:hover {
  transform: rotate(-10deg) scale(1.2);
}

a #mousescreen:hover {
  transform: rotate(180deg);
}

a #mouseauthor:hover {
  color: blue;
}

a #mouseartist:hover {
  transform: rotate(-90deg);
}

a #mousemail:hover {
  transform: skew(60deg);
}

.no-break {
  white-space: nowrap;
}

footer {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    background: transparent;
    position: fixed;
    font-size: 20px;
    padding: 12px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

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

#social-links a {
    margin: 5px;
}

#impressum a {
    margin: 5px;
}

footer a:hover {
  color: blue;
}

@media (max-width: 1024px) and (min-width: 768px) {
  #menu {
    font-size: 70px;
  }

  #menu img {
    width: 40px;
    height: auto;
  }

  a #mousei, #mousecopy, #mousescreen, #mouseauthor, #mouseartist, #mousemail {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 7px;
    color: black;
  }
}

@media (max-width: 767px) {
  #menu {
    font-size: 3rem;
  }

  #menu img {
    width: 30px;
    height: auto;
  }

    a #mousei, #mousecopy, #mousescreen, #mouseauthor, #mouseartist, #mousemail {
    text-decoration: underline;
    text-decoration-thickness: 2.5px;
    text-underline-offset: 7px;
    color: black;
  }

  footer {
    flex-direction: column-reverse;
    gap: 10px;
  }
}