* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: #fafafa;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 10px 25px;
  gap: 24px;
  width: 100%;
}

.ignitis-logo {
  display: none;
}

.grey-line {
  width: 90%;
  height: 1px;
  background-color: #e9ebef;
}

.girl-and-checkmark-img-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px auto 0 auto;
}

.girl-and-checkmark-img-desktop {
  display: none;
}

.girl-and-checkmark-img-mobile {
  z-index: 1;
  transform: translate(0, 9px);
}

.white-block-wrapper {
  display: flex;
  justify-content: center;
}

.white-block {
  background-color: white;
  color: #172e62;
  padding: 48px 24px;
  box-shadow: 0px 1px 3px 0px #172e6226;
  border-radius: 24px;
  max-width: 1121px;
  margin: 0 24px;
}

h1 {
  line-height: 44px;
  text-align: center;
  margin-bottom: 32px;
}

.text-about-more-information {
  line-height: 28px;
  font-weight: 600;
  text-align: center;
}

a {
  color: #4057e3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .header {
    padding: 20px 0 20px 40px;
    gap: 48px;
  }

  .girl-and-checkmark-img-wrapper {
    margin: 72px auto 0 auto;
  }

  .girl-and-checkmark-img-desktop {
    display: block;
    z-index: 1;
    transform: translate(0, 15px);
  }
  .girl-and-checkmark-img-mobile {
    display: none;
  }

  .ignitis-logo {
    display: block;
  }

  .ignitis-logo-mobile {
    display: none;
  }

  .white-block {
    padding: 96px;
    border-radius: 39px;
  }
}

@media only screen and (min-width: 1024px) {
  .white-block {
    padding: 96px 268px;
    border-radius: 39px;
  }
}
