h1 {
  text-decoration: underline;
}

body {
  background-color: rgb(69, 245, 0);
}

.contact {
  display: flex;
  text-align: center;
}

#innercircle {
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(180deg);
    to {
      transform: rotate(180deg);
    }
  }
}

polygon {
  background-repeat: repeat-x;
}

text {
  font-size: 5px;
}
