@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  background: #010c26;
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  border: 1px solid #1a253e;
  background-color: #020c27;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper {
  width: 1108px;
  max-width: 100%;
  padding: 0 10px;
  margin: auto;
}
h1 {
  margin: 65px 0 35px;
  text-align: center;
  text-shadow: 0 0 3px rgba(60, 207, 252, 0.5);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.logo {
  width: 128px;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding-left: 0;
}
li {
  list-style: none;
  padding-left: 50px;
  position: relative;
  margin-bottom: 25px;
}
li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: #00badc;
  background-image: -webkit-gradient(linear, right top, left top, from(#d02a02), to(#ac022b));
  background-image: linear-gradient(to left, #d02a02 0%, #ac022b 100%);
  border-radius: 30px;
  line-height: 1;
  font-style: normal;
}
main a {
  color: #00badc;
  text-decoration: underline;
}

@media (max-width:768px) {
  body {
    font-size: 16px;
  }
  h1 {
    margin: 45px 0 25px;
    font-size: 24px;
  }
}
@media (max-width:480px) {
  body {
    font-size: 14px;
  }
  h1 {
    margin: 25px 0 15px;
    font-size: 20px;
  }
  li {
    padding-left: 38px;
  }
}
