@font-face {
    font-family: prophet;
      src: url(../prophetvar.woff);
}

ul {
    font-family: prophet;
    font-size: 20px;
    padding-left: 20px;
    vertical-align: baseline;
    color:#0000FF;
    display: inline-flex;
}

@media screen and (min-width: 800px) {
    body { 
        --spacing: 50px;
    }
}

h2 {
    font-family: prophet;
    font-size: 30px;
    padding-right: 20px;
    padding-top: 10px;
    vertical-align: baseline;
    text-align: right;
    color:#0000FF;
}


h1{
    font-family: prophet;
    font-size: 250px;
    line-height: 200px;
    vertical-align: baseline;
    padding-top: 30px;
    color:#0000FF;
    transition: all 600ms ease-in-out;
}

h1:hover{
    color: rgb(179, 206, 237);
}


.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #0000FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 10px;
  text-align: center;
  animation: spin 5s linear infinite;
}

.circle a {
  text-decoration: none;
  color: #0000FF;
}

.circle a:hover {
  color: rgb(179, 206, 237);
}

@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}