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

*

{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Yanone Kaffeesatz', sans-serif;
}

body {
  padding: 60px;
}

.back {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.back a {
  background: #fff;
  display: inline-flex;
  color: #abb9bd;
  padding: 3px 13px 3px 3px;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 20px;
  border: 2px solid #abb9bd2e;
  border-radius: 50px;
  align-items: center;
  transition: 0.6s;
}

.back a img {
  max-width: 60px;
  margin-bottom: 0;
  margin-right: 5px;
}

.back a:hover {
  background: #46b8e338;
  color: #097c9d;
  padding: 3px 13px 3px 3px;
  border: 2px solid #097c9dab;
}

.heading {
  text-align: center;
  margin-bottom: 200px;
}

h1 {
  width: 100%;
  margin-bottom: 30px;
  font-size: 72px;
}

.heading p {
  font-size: 64px;
}

.content {
  margin-bottom: 150px;
}

.title {
  text-align: center;
  width: 100%;
  font-size: 24px;
  margin-bottom: 30px;
}

.items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.item {
  max-width: 600px;
  text-align: center;
  padding: 0 20px 0 20px;
  margin-bottom: 100px;
}

.another {
  max-width: 600px;
  text-align: center;
  padding: 0 20px 0 20px;
}

img {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 15px;
}

.item p {
  font-size: 28px;
  text-align: start;
}

.item p.small_text {
  font-size: 18px;
  color: red;
  padding: 10px;
}
.bottom {
  text-align: center;
  font-size: 44px;
}

a {
    text-decoration: none;
    color: black;
    transition: 0.6s;
}

a:hover {
    color: #097c9d;
}

@media (max-width: 1337px) {
    h1 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 56px;
  }

    .heading p {
    font-size: 44px;
  }
}

@media (max-width: 882px) {
  h1 {
    margin-bottom: 15px;
    font-size: 36px;
  }

  .heading p {
    font-size: 24px;
  }

  .heading {
    margin-bottom: 100px;
  }

  .content {
    margin-bottom: 100px;
  }

  .title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .item {
    max-width: 500px;
    margin-bottom: 60px;
  }

  .item p {
    font-size: 20px;
  }

  .item p.small_text {
    font-size: 16px;
  }
  
  .another {
    max-width: 500px;
  }
  
  .bottom {
    font-size: 36px;
  }

  .back a:hover {
    padding: 3px 13px 3px 3px;
  }

  .back a img {
    max-width: 50px;
  }
}

@media (max-width: 480px) {

  body {
    padding: 20px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .heading p {
    font-size: 18px;
  }

  .heading {
    margin-bottom: 60px;
  }

  .content {
    margin-bottom: 60px;
  }

  .title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .item {
    max-width: 500px;
    margin-bottom: 50px;
  }

  .item p {
    font-size: 20px;
  }

  .item p.small_text {
    font-size: 14px;
  }
  
  .bottom {
    font-size: 26px;
  }
  
  .back {
    margin-bottom: 60px;      
  }
  
  .back a {
    padding: 3px 13px 3px 3px;
    font-size: 16px;
  }

  .back a:hover {
    padding: 3px 13px 3px 3px;
  }
}