*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");

body {
  background: #23272e;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 16px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e06d06;
}

.icon {
  width: 100px;
  margin: 10vh 0 5vh;
  animation-name: iconRadius;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes iconRadius {
  0% {
    border-radius: 0px;
  }

  50% {
    border-radius: 50%;
  }

  100% {
    border-radius: 0px;
  }
}

.links a {
  font-size: 1.5em;
  display: inline-block;
  margin: 0 1vw;
}

.links a::before,
.links a::after {
  content: " - ";
}

.signature {
  font-size: 0.7em;
  margin-top: 8vh;
}
