* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Noto Sans', sans-serif;
  background-image: url(bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 20px;
  line-height: 1.5;
}


.wrapper {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 910px;
  width: 100%;
  border: 2px solid #ffffff;
  z-index: 5;
  position: relative;
}

h1,
h2 {
  margin-bottom: 12px;
}

h1 {
  font-size: 40px;
}

h2 {

  font-size: 30px;
}

a {
  color: inherit;
}

ul {
  border-top: 2px solid #fff;
  padding-top: 16px;
  margin-top: 16px;
  list-style: none;
  column-count: 3;
  text-align: left;
}

ul li {
  position: relative;
  padding-left: 30px;
  transition: .4s;
  margin-bottom: 8px;
}

ul li:hover {
  transform: translateX(5px);
}

ul li:before {
  content: "";
  display: block;
  background-color: #534FD9;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #fff;
  opacity: 1;
  box-sizing: border-box;
}



@media (max-width: 920px) {
  body {
    padding: 10px;
  }

  ul {
    column-count: 2;
  }

  body:before {
    display: none;
  }

}


@media (max-width: 720px) {
  body {
    padding: 10px;
    font-size: 17px;
  }

  ul {
    column-count: 1;
  }

  ul li {
    font-size: 16px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {

    font-size: 24px;
  }
}