* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
  width: 100svw;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;

  > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    > span {
      margin-left: 0.5rem;
      font-weight: 400;
      font-size: 1rem;
      color: #5a7abc;
    }
  }

  > h1 {
    font-weight: 400;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #81c9b4 0%, #5a7abc 50%, #e085b4 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
  }

  > p {
    font-weight: 400;
    font-size: 0.8rem;
    color: #aaaaaa;
  }
}
