/* reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", sans-serif; }
h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, pre, hr { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video, canvas, iframe { display: block; max-width: 100%; vertical-align: middle; }
a { text-decoration: none; color: inherit; }

#pr1 {
    background: url("./imgs/pr1.png") no-repeat top center; 
    background-size: cover;
}


/* фон всего сайта */
body {
    background: #EEEEEE;
}
.screen {
    position: relative;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  /* Настройка footer */
  footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 20px 70px 20px;
    text-align: center;
    /* фон для footer градиент */
    background: linear-gradient(180deg, rgba(238, 238, 238, 0) 0%, #EEEEEE 10%);
  }
  #pw footer{
    padding: 20px 20px 0px 20px;
  }
  /* Настройка h1 */
  h1 {
    font-size: 38px;
    font-weight: bold;
    color: #000000;
    letter-spacing: -0.41px;
    /* отступ снизу */
    margin-bottom: 8px;
  }
  /* Настройка p */
  p {
    padding-left: 65px;
    padding-right: 65px;
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    /* отступ снизу */
    margin-bottom: 30px;
  }
  /* Настройка btn */
  .btn {
    font-size: 17px;
    font-weight: medium;
    color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    background: #0088FF;
    border-radius: 999px;
    cursor: pointer;
    
  }
  .hidden-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999;
  }
  .btns_line{
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    height: 70px;
  }
  .btns_line_item {
    font-size: 10px;
    font-weight: medium;

    color: #888888;
    cursor: pointer;
  }
  .btns_line_sep{
    width: 2px;
    height: 16px;
    background: #888888;
  }
