body {
  display: block;
  width: 100vw;
  height: 100vh;
  margin: 0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  background-image: url("img/5b58aedd-d8a3-424f-ac8c-dcc8e6466688.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.3);
}

.text-container{
  max-width: 86%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 1;
}

.text-container > span{
  padding: 20px 50px;
  background: rgba(255,255,255,.7);
  text-align: center;
  border-radius: 10px;
}

h1{
  font-size: 50px;
  margin: 20px 0;
  color: #158c15;
}

h2{
  font-size: 24px;
  margin-bottom: 10px;
}

ul{
  padding: 0;
}

li{
  list-style: none;
  line-height: 40px;
  text-align: center;
}

@media (max-width: 600px){
  .text-container > span {
    padding: 20px 20px;
  }

  h1{
    font-size: 32px;
  }

  h2{
    font-size: 18px;
  }

  li{
    line-height: 1.5;
    margin-bottom: 10px;
  }
}