/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  /*
    2. Remove default margin
  */
  * {
    margin: 0;
  }
  /*
    3. Allow percentage-based heights in the application
  */
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  /*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
  */
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  /*
    6. Improve media defaults
  */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  /*
    7. Remove built-in form typography styles
  */
  input, button, textarea, select {
    font: inherit;
  }
  /*
    8. Avoid text overflows
  */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  /*
    9. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

  @font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Bold.eot');
    src: local('Open Sans Bold'), local('OpenSans-Bold'),
        url('OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/OpenSans-Bold.woff2') format('woff2'),
        url('./fonts/OpenSans-Bold.woff') format('woff'),
        url('OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url('OpenSans-Regular.eot');
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
      url('OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
      url('./fonts/OpenSans-Regular.woff2') format('woff2'),
      url('./fonts/OpenSans-Regular.woff') format('woff'),
      url('OpenSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url('OpenSans-Light.eot');
  src: local('Open Sans Light'), local('OpenSans-Light'),
      url('OpenSans-Light.eot?#iefix') format('embedded-opentype'),
      url('./fonts/OpenSans-Light.woff2') format('woff2'),
      url('./fonts/OpenSans-Light.woff') format('woff'),
      url('OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

  body{
    min-width: 320px;
    background-color: #fff;
    font-family: 'Open Sans';
  }

  .page{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
  }

  .container{
    max-width: 1720px;
    margin: 0 auto;
  }

  .main{
    padding-bottom: 1%;
  }

  .main__text{
    margin-bottom: 30px;
    width: 558px;
    padding: 10px;
    border: 1px solid #000;
  }

  .main__title {
    font-weight: 800;
    font-size: 25px;
  }

  .main__descr{
    color: #000;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
  }

  .main__container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1%;
  }

  .main__info {
    width: 558px;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 0 0 15px 15px;
  }

  .main__list {
    padding-left: 20px;
  }

  .main__caption {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .main__list:not(:last-child) {
    margin-bottom: 25px;
  }

  .main__item:not(:last-child) {
    margin-bottom: 8px;
  }

  .main__link {
    color: rgb(30, 147, 201);
    text-decoration: none;
    font-size: 24px;
  }

  .main__info-descr {
    width: 80%;
    font-size: 15px;
  }

  .header{
    background-color: #d3d3d3;
  }

  .header__container{
    padding: 30px;
  }

  .header__descr{
    color: #fff;
    font-weight: 800;
    font-size: 25px;
  }

  .footer{
    margin-top: auto;
    background-color: #d3d3d3;
  }

  .footer__container{
    padding: 26px;
  }

  .footer__descr{
    color: #fff;
    font-family: 'Roboto';
    font-weight: 800;
    font-size: 25px;
  }