* {
  box-sizing: border-box;
}

html,
body {
  min-width: 360px;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
}

body {
  font-family: 'PT Root UI', Helvetica, Arial, sans-serif;
  font-weight: 400;
  background-color: var(--background-color);
  color: var(--default-text-color);

  &.home {
    display: flex;
    flex-direction: column;
  }
}

a {
  color: var(--default-text-color);
}

.mobileOnly {
  display: none;
}

.desktopOnly {
  display: initial;
}

.projectName {
  width: 100%;
  margin: auto;
  /* padding-bottom: 50px; */
  font-family: 'Arial Narrow', Arial, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;

  h1 {
    font-size: 200px;
  }

  h2 {
    font-size: 30px;
  }
}

.new_user {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: auto;

  input {
    text-align: center;
  }
}

footer {
  text-align: center;

  h2,
  p {
    font-size: 14px;
  }

  h2 {
    margin-bottom: 10px;
    font-weight: bold;
  }

  section {
    margin-bottom: 20px;
    line-height: 120%;
    opacity: 0.5;

    &:hover {
      opacity: 1;
    }
  }
}

@media (max-width: 880px) {
  .mobileOnly {
    display: block;
  }

  .desktopOnly {
    display: none;
  }

  .projectName {
    h1 {
      font-size: 60px;
    }

    h2 {
      font-size: 30px;
    }
  }
}
