* {
  --main-color: #8000ff;
  font-weight: 400;
}

body {
  font-family:
    Roboto Mono,
    monospace;
}

::selection {
  background: var(--main-color);
  color: white;
}

.background {
  background: black;
  animation: gradientAnimation 4s ease forwards;
}

@keyframes gradientAnimation {
  0% {
    background: var(--main-color);
  }
  100% {
    background: black;
  }
}

.wrapper {
  align-items: center;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.info {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: calc(16px + 1vmin);
  justify-content: center;
  margin: 32px;
}

.photo {
  height: 32vmin;
  margin: 8px;
  min-height: 128px;
  border-radius: 50%;
  border: 2px solid white;
}

.title {
  margin: 8px;
}

.name {
  color: white;
  font-weight: 500;
  margin: 4px;
  text-align: center;
}

.description {
  color: darkgray;
  margin: 2px;
  text-align: center;
}

.line {
  color: white;
  background-color: white;
  height: 1px;
  width: 100%;
}

.links {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 16px;
  width: 100%;
}

.link {
  color: white;
  margin: 8px 32px;
  text-align: center;
  text-decoration: none;
  transition: 0.4s;
}

.link img {
  height: calc(16px + 4vmin);
  width: calc(64px + 8vmin);
}

.link:hover {
  transform: scale(116%);
}
