img {
  max-width: 100%;
  height: auto;
}

body {
  padding: 0;
  margin: 0;
  display: block;
  position: relative;
  font-family: sans-serif;
}
body .header {
  background: #EBEBEB;
  display: flex;
  width: 100%;
  height: 100px;
  flex-direction: row;
  align-items: center;
}
body .header .logo,
body .header .title,
body .header .course-icons {
  display: flex;
  justify-content: center;
  margin: 10px;
}
body .header .logo {
  flex-grow: 1;
}
body .header .title {
  flex-grow: 2;
}
body .header .course-icons {
  flex-grow: 1;
}
body .content {
  display: flex;
  align-items: center;
}
body .content .examples-group {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}
body .content .examples-group .examples {
  margin: 40px;
  cursor: pointer;
}
body .content .examples-group .examples p {
  color: #0A203E;
}
body .content .examples-group .examples img {
  filter: drop-shadow(5px 9px 4px rgba(185, 185, 185, 0.7176470588));
}
body .content .qr-code {
  width: 40%;
}
body .content .qr-code .instructions {
  width: 100%;
}
body .content .qr-code .instructions p {
  font-size: 24px;
  display: block;
  position: relative;
  max-width: 632px;
  margin: 0 auto;
}
body .content .qr-code .qr {
  display: flex;
  justify-content: center;
}
body .footer {
  background-color: #EBEBEB;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: right;
}
body .footer p {
  margin-right: 20px;
}

@media screen and (max-width: 1133px) {
  body .content {
    flex-direction: column;
  }
  body .content .examples-group {
    justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  body .header {
    height: auto;
    flex-direction: column;
  }
  body .header .logo {
    width: 80%;
    margin: 10px auto;
    display: block;
  }
  body .header .logo img {
    margin: 0 auto;
    display: block;
  }
  body .header .title h1 {
    font-size: 32px;
    text-align: center;
    line-height: 35px;
  }
  body .header .course-icons {
    width: 80%;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
  }
  body .header .course-icons img {
    margin: 0 auto;
    display: block;
  }
  body .content {
    flex-direction: column;
  }
  body .content .examples-group {
    width: 100%;
  }
  body .content .examples-group .examples {
    display: block;
    margin: 40px auto 10px auto;
  }
  body .content .qr-code {
    display: none;
  }
  body .footer p {
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */