* {
  padding: 0;
  margin: 0;
  background-color: black;
  color: white;
  font-family: "Ubuntu", sans-serif;
}

html {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#root {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  flex-direction: column;
  row-gap: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

#logo {
  display: flex;
  column-gap: 32px;
  align-items: center;
}

#logo-img-wrap {
  position: relative;
  height: 128px;
  width: 128px;
  border-radius: 12px;
  overflow: hidden;
  cursor: default;
}

#logo-img {
  height: 128px;
  width: 128px;
  display: block;
  touch-action: none;
}

#logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}

#logo-text-top {
  font-size: 66px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
}

#logo-text-bottom {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  color: #666;
}

#footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  font-size: 14px;
  color: #666;
  padding: 16px 24px;
}

.footer-item {
  color: inherit;
}

.footer-sep {
  color: inherit;
}

#footer-year {
  color: inherit;
}

.footer-link {
  color: inherit;
  text-decoration: underline;
}

.footer-link:hover {
  color: #1B9E3E;
}

@media (max-width: 640px) {
  #logo {
    flex-direction: column;
    row-gap: 16px;
  }
}
