* {box-sizing:border-box}
#svg {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #0e0e0e;
    color: rgb(196, 3, 3);
  }
  body {
    margin: 0;
    height: 100vh;
    background-color: #0e0e0e;
  }
  
  line {
    transform-origin: center;
    animation: do 10s infinite alternate;
  }
  line:nth-child(6n) {
    animation-delay: -1s;
  }
  line:nth-child(6n + 1) {
    animation-delay: -2s;
  }
  line:nth-child(6n + 2) {
    animation-delay: -3s;
  }
  line:nth-child(6n + 3) {
    animation-delay: -4s;
  }
  line:nth-child(6n + 4) {
    animation-delay: -5s;
  }
 line:nth-child(6n + 5) {
    animation-delay: -6s;
  }
  @keyframes do {
    100% {
      transform: scale(0.69);
    }
  }
nav {
    position: fixed;
    z-index: 2;
    display: flex; 
    justify-content: space-between; 
    padding: 1rem 2rem;
    font-family: 'Lato', sans-serif;
    color: #eee;
    background-color: #0e0e0e;
    width: 100%;
    z-index: 3;
  }
nav ul {
    display: flex; 
    list-style: none; 
  }
nav li {
    padding-left: 1rem; 
  }
a {
  outline: none;
  text-decoration: none;
}

a:link {
  color: #eee;
  border-bottom: 1px solid;
  border-color: #eee;
}

a:visited {
  color: #eee;
}

a:focus {
  border-bottom: 1px solid;
  background: #eee;
}

a:hover {
  border-bottom: 1px solid;
  background: red;
}

a:active {
  background: red;
  color: white;
}
body{
  padding: 0;
  margin: 0;
  align-items: center;
  font-family: 'Lato', sans-serif;

}

.textbox {
  position:relative;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  text-align: center;
  color: white;
  height:100vh;
}

.textbox > h1 {
  z-index: 2;
  font-size: 6em;
}

@media (max-width: 768px) {
  .textbox > h1 {
    font-size: 3em;
  }
}