/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Courier;
  
  background-image: url("https://the-zorp-zone.neocities.org/background-space.gif")
}

a:link {
  color: blue;
  text-decoration: none;
}
a:visited {
  color: red;
  text-decoration: none;
}
a:hover {
  color:green;
  text-decoration: underline overline;
}
a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: none;
}

.version{
  font-size: 11px;
}

.links{
  display: flex;
  flex-direction: row;
  align-self: flex-end;
  justify-content: space-between;
  margin-right: 8px;
}
.links :nth-child(1){
  order: 1;
}
.links :nth-child(1){
  order: 2;
}
.link-text-boarder{
  display: inline-block;
  text-align: center;
  line-height: 1;
  border-style: dotted;
  background-color: black;
}

.site-map {
  display: flex;
  align-self: flex-start;
  margin-left: 5px;
}
.site-map-text-boarder{
  display: inline-block;
  line-height: 1;
  border-style: dotted;
  background-color: black;
}

.welcome-text span {
  display: inline-block;
  letter-spacing: -12px;
  color: #13EDB3;
  animation: wave 2s ease-in-out infinite;
}

.welcome-text span:nth-child(1) {
  animation-delay: 0s;
}
.welcome-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.welcome-text span:nth-child(3) {
  animation-delay: 0.4s;
}
.welcome-text span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes wave {
  0%, 100% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media only screen and (max-width: 767px) {
  .welcome-text span {
  display: inline-block;
  letter-spacing: -12px;
  font-size: 24px;
  color: #13EDB3;
  }
  .welcome-text{
  font-size: 24px;
  }
}