@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Lilita+One&display=swap');

:root {
  --black: #202020e7;
  --gray: #ced4da;
  --grayDark: #96A3B0;
  --red: #FF3370;
  --redDark: #E00043;
  --purple: #9476FF;
  --purpleDark: #6F47FF;
  --orange: #93C819;
  --blue: #56c2f9;
  --blueTitle: #00a9ffde;
  --readable: #202020c7;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Fredoka", sans-serif;
}

strong {
  font-weight: 500;
}

.lilita, a, h1, h2 {
  font-family: "Lilita One", sans-serif;
}

body {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  width: 160px;
  max-width: 40vw;
  height: 160px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100vw - 32px);
  min-height: 100vh;
}

main.center {
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

main.start {
  justify-content: start;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 4px;

  h1 {
    font-size: 48px;
    color: var(--purple);

    span {
      color: var(--red);
    }
  }

  p {
    max-width: 360px;
    color: var(--black);
  }
}

div.policy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  padding-top: 56px;

  h1 {
    font-size: 36px;
    color: var(--blueTitle);
    text-align: center;
    margin-bottom: 16px;
  }

  h2 {
    color: var(--blue);
    font-size: 20px;
    margin-top: 16px;
  }

  p,
  li {
    font-size: 16px;
    max-width: 860px;
    color: var(--readable);
  }

  ul {
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 16px;
  }
}



a {
  text-decoration: underline;
  color: var(--blue);
}

footer {
  position: absolute;
  bottom: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  a {
    text-decoration: underline;
    color: var(--gray);
  }

  a:hover {
    color: var(--blue);
  }
}

.back {
  position: absolute;
  left: 20px;
  top: 16px;
  color: var(--blue);
  text-decoration: none;
}

.back:hover {
  text-decoration: underline;
}

.danger {
  color: var(--redDark) !important;
}