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

body {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #0d0915;
}

a {
  color: #6d598f;
  text-decoration: none;
}

a:hover,
a:active {
  color: #9787b4;
  text-decoration: underline;
}

#page {
  display: flex;
  align-items: center;
  width: 1150px;
}

#logo {
  background-image: url("assets/logo.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 350px;
  height: 60px;
}

#content {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Ubuntu", "Cantarell", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white;
  padding: 20px;
}

#textContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 48px 0;
}

#title {
  font-size: 42pt;
  line-height: 44pt;
  margin-bottom: 16px;
}

#text {
  font-size: 28px;
}

#text a,
#text .domain {
  white-space: nowrap;
}

#text .domain {
  color: #6d598f;
}

#autoRedirect {
  font-size: 16px;
}

#countdown {
  display: inline-block;
  min-width: 1.5ch;
  text-align: center;
}

#countdown.animate-out {
  animation: slideOut 0.3s ease-in forwards;
}

#countdown.animate-in {
  animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#illustration {
  background-image: url("assets/redirect.svg");
  background-color: #dbd3eb;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75%;
  width: 400px;
  height: 400px;
  border-radius: 250px;
  border: 8px solid #553c83;
  padding: 20px;
}
