@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@500;600&family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  background: #f2f2f2;
  height: 100%;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

#wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}

#content {
  margin-top: -21px;
}

#head {
  height: 50px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom:40px;
}

#head img {
  height: 50px;
  margin-right:-5px;
}

#circle {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 300px;
  height: 300px;
}

#circle img {
  position: absolute;
  width: 100%;
  animation: rotation 30s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

h1 {
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 76px;
  font-weight: 600;
  color: #f33b17;
  margin: 0;
  margin-top: 95px;
}

h2 {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #000;
  margin: 0;
  margin-top: 190px;
}

h3 {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #a1a0a5;
  margin: 0;
  margin-top: 210px;
  text-transform: uppercase;
}

#links {
  text-align: center;
  margin: 30px 0 20px;
}

#links img {
  height: 40px;
}

#links a:first-child {
  margin: 0;
}

#links a {
  margin-left: 15px;
  opacity: .33;
  transition:opacity 200ms ease;
  -moz-transition:opacity 200ms ease;
  -webkit-transition:opacity 200ms ease;
  -o-transition:opacity 200ms ease;
}

#links a:hover {
  opacity: 1;
}

.linklist {
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: #f33b17;
  letter-spacing: 1px;
}

.linklist span {
  margin: 0 4px;
}

.linklist a {
  color: #a1a0a5;
  text-transform: uppercase;
  text-decoration: none;
  transition:color 200ms ease;
  -moz-transition:color 200ms ease;
  -webkit-transition:color 200ms ease;
  -o-transition:color 200ms ease;
}

.linklist a:hover {
  color: #000;
}

#footer {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25px;
  background: #f33b17;
}
