* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none; /* Für Safari */
  -ms-user-select: none;     /* Für Internet Explorer */
}

html, body {
  background-color: #333;
  margin: 0;
  padding-top: 10px;
  height: 100%;
  user-select: none;
}

h1 {
  text-align: center;
  color: silver;
  text-decoration: underline;
  text-decoration-color: gray;
  font-size: 2.5vmax;
  cursor: default;
}

.links {
  display: flex;
  flex-direction: column; /* Damit die inneren divs untereinander stehen */
  align-items: center;    /* Horizontal zentrieren */
  justify-content: center;
  margin: 0 auto;
  /* background-color: yellow; */
  padding: 1rem;
  gap: 1.35rem; /* Abstand zwischen den beiden Divs */
  width: fit-content;
  max-width: 100%;
  color: white;
  font-size: 2vmax;
  transition: color 0.4s;
}


.links a {
  color: white;
  text-decoration: none;
}

.links a:hover {
  color: deepskyblue;
}

.link {
  width: auto;
  height: auto;
  padding: 0.25vmax;
  padding-left: 0.5vmax;
  padding-right: 0.5vmax;
  background-color: #444;
  border-radius: 6px;
  border: 1px solid silver;
  transition: color 0.4s, border 0.1s;
}

.link:hover {
  background-color: #333;
  border: 1px solid deepskyblue;
}
