*,
:after,
:before {
  box-sizing: inherit;
}
* {
  scroll-margin-top: 6rem;
  /* outline: 1px red solid; */
}
html {
  margin: 0;
  height: 100vh;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 1rem;
  box-sizing: border-box;
  font: 100%/1.6em georgia, serif;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  word-wrap: break-word;
  -ms-font-feature-settings: "kern", "liga", "clig", "calt";
  -webkit-font-feature-settings: "kern", "liga", "clig", "calt";
  font-feature-settings: "kern", "liga", "clig", "calt";
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-kerning: normal;
  font-weight: 400;

  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background-image: linear-gradient(87.99deg, #006ef2 3.65%, #01aefa 79.22%);
  background: -moz-linear-gradient(87.99deg, #006ef2 3.65%, #01aefa 79.22%);
  background: -webkit-gradient(
    radial,
    center center,
    0px,
    center center,
    100%,
    color-stop(0%, #006ef2),
    color-stop(50%, #01aefa),
    color-stop(100%, #01aefa)
  );
  background: -webkit-linear-gradient(87.99deg, #006ef2 3.65%, #01aefa 79.22%);
  background: -o-linear-gradient(87.99deg, #006ef2 3.65%, #01aefa 79.22%);
  background: -ms-linear-gradient(87.99deg, #006ef2 3.65%, #01aefa 79.22%);
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr=" #006ef2 ", endColorstr="
    #01aefa ",GradientType=1 )";
  background-position: 50% 0%;
  background-size: 150vmax 150vmax;
  background-repeat: no-repeat;
  background-color: #01aefa;
}
a {
  text-decoration: none;
  color: inherit;
}
.page {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  min-height: 100vh;
}
.page-container {
  height: 100vh;
  max-width: 436px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

span {
  display: inline-block;
  font-family: "Roboto";
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #fff;
  margin-bottom: 18px;
}
.header-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.logo {
  width: 350px;
  height: 75px;
}
.subtitle {
  margin-top: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 19.3482px;
  line-height: 23px;
  color: #ffffff;
}

.content {
  width: 436px;
}
.item {
  cursor: pointer;
  display: flex;
  width: 100%;
  height: 50px;
  background: #ffffff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-bottom: 13px;
  transition: 0.2s all;
}
.item:hover {
  transform: scale(1.05);
}
.item p {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #282828;
}

@media screen and (max-width: 768px) {
  .page-container {
    max-width: 278px;
    justify-content: center;
    padding-top: 48px;
  }
  .logo {
    width: 204.53px;
    height: 39.04px;
  }
  .subtitle {
    font-size: 12.49px;
    line-height: 15px;
  }
  .content {
    width: 278px;
    margin-top: 50px;
  }
  .second-section {
    margin-top: 42px;
  }
  .item {
    height: 48px;
  }
  span {
    margin-bottom: 13px;
  }
}
