html {
  box-sizing: border-box;
  width: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  margin: 0; 
  font-family: Helvetica, sans-serif;
  background:
    linear-gradient(45deg, hsla(340, 100%, 55%, 1) 0%, hsla(340, 100%, 55%, 0) 70%),
    linear-gradient(135deg, hsla(225, 95%, 50%, 1) 10%, hsla(225, 95%, 50%, 0) 80%),
    linear-gradient(225deg, hsla(140, 90%, 50%, 1) 10%, hsla(140, 90%, 50%, 0) 80%),
    linear-gradient(315deg, hsla(35, 95%, 55%, 1) 100%, hsla(35, 95%, 55%, 0) 70%);
  background-repeat: no-repeat;
}

a {
  color: black;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.highlight {
  background: white;
  transition: all 0.1s;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  border-bottom: 2px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.menu {
  width: 100%;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: center;
  margin: 80px 0;
}
.menu a {
  color: black;
  font-weight: bold;
  display: inline-block;
  padding: 12px;
  margin: 0 20px;
}

.textcontent {
  margin: 0 auto;
  max-width: 90%;
  font-size: 20px;
  line-height: 2;
  position: relative;
}

@media screen and (max-width: 625px) {
  .menu a {
    margin: 0 5px;
    font-size: 14px;
  }
}