* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: black;
  width: 100%;
  height: 100dvh;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
}

.logo-container {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: 1s;
}

footer {
  color: white;
  position: fixed;
  bottom: 0px;
  width: 100%;
  padding: 20px;
  text-align: center;
}

header {
  color: white;
  position: fixed;
  top: 0px;
  width: 100%;
  padding: 20px 0px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

header > a {
  color: white;
  padding-left: 14px;
  padding-right: 2px;
  width: fit-content;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
header > a:hover {
  text-decoration: none;
}

header > a > svg {
  margin-left: 10px;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
  }
}
