body {
  background-color: black;
  /* background-color: #6e64ff; */
  color: white;
  font-family: "Arimo", sans-serif;
  position: relative;
  height: 100vh;
  margin: -20px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

.footer{
    position: absolute;
    bottom: 7vmin;
    left: 27vmin;
    font-size: 2.4vmin;
}
.headline{
    font-size: 16.8vw;
    position: absolute;
    top: 2vh;
    margin: 0;
    white-space: nowrap; /* Prevents the text from wrapping to the next line */
    overflow: hidden;    /* Hides the content that overflows the element's box */
    text-overflow: clip;
}
.links{
    position: absolute;
    left: 27vmin;
    bottom: 19vmin;
    font-size: 4vmin;
}
a:link{
  color:white;
  text-decoration: none;
}
a:hover {
  color:white;
  text-decoration: underline;
}
a:visited{
  color:white;
}