html {
    font-family: "V-Inter", "Helvetica Neue", "Helvetica-Neue", "Arial", sans-serif;
}
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
  
.header {
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}
  
.header__container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 4px 16px;
}
  
.header__logo {
    display: flex;
    height: 43px;
}
  
.header__logo a {
    display: block;
}
  
.header__image {
    width: 100%;
    height: auto;
}
  
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 648px;
    width: 100%;
    padding: 24px 20px;
    margin: auto;
}
  
@media screen and (max-width: 720px) {
    .content {
      margin: 0 auto auto;
    }
}
  
.content__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.content__section {
    width: 100%;
}
  
.content__desktop-img {
    width: 116px;
    margin-bottom: 32px;
}
  
@media screen and (max-width: 720px) {
    .content__desktop-img {
      display: none;
    }
}
  
.content__mobile-img {
    display: none;
}
  
@media screen and (max-width: 720px) {
    .content__mobile-img {
      display: block;
      width: 80px;
      margin-bottom: 16px;
    }
}
  
.content__title {
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: rgba(23, 23, 23, 1);
    -webkit-font-smoothing: antialiased;
}
  
@media screen and (max-width: 720px) {
    .content__title {
      margin-bottom: 16px;
    }
}
  
.content__text {
    font-size: 16px;
    font-weight: 375;
    line-height: 22px;
    color: rgba(77, 77, 77, 1);
    -webkit-font-smoothing: antialiased;
}
  
.content__link {
    color: rgba(0, 119, 130, 1);
    text-decoration: underline;
}
  
.content__image {
    width: 100%;
    height: auto;
}