body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Century Gothic", monospace;
  height: 100vh;
  margin: 0;
  user-select: none;
  -webkit-user-drag: none;
  background-color: black;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

#circle {
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background-image: url('https://media.discordapp.net/attachments/1106712593390907475/1111037526409490552/wMfZOxOgZsZkbeD.jpg');
  background-size: cover;
  background-position: center;
  filter: drop-shadow(0 0 10px #424d53);
  transition: all .7s ease;
  margin-bottom: 20px;
  transform: translateY(50px);
  opacity: 0;
}

#circle:hover {
  color: #f8f8f2;
  filter: drop-shadow(0 0 20px #6f7b81);
  cursor: pointer;
}

#text {
  font-size: 48px;
  font-weight: bold;
  filter: drop-shadow(0 0 10px #424d53);
  transition: all .7s ease;
  color: #424d53;
  transform: translateY(50px);
  opacity: 0;
}

#text:hover {
  color: #f8f8f2;
  filter: drop-shadow(0 0 20px #6f7b81);
  cursor: pointer;
}

#description {
  font-size: 20px;
  color: #f8f8f2;
  text-align: center;
  margin-top: 20px;
  transition: all .7s ease;
  word-wrap: break-word;
  transform: translateY(50px);
  opacity: 0;
}

#circle.fade-in, #description.fade-in, #text.fade-in {
  opacity: 1;
  transform: translateY(0);
}
