body {
  font-family: "Roboto", "Tahoma", sans-serif;
  margin: 0;
}

.page-header {
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header__title {
  display: inline-block;
  width: 300px;
  font-size: 24px;
  text-decoration: none;
  color: #2196F3;
}

.page-header__title:hover {
  opacity: 0.6;
}

.page-header__title:active {
  opacity: 0.3;
}

.page-header__title svg {
  position: absolute;
}

.page-header__title p {
  margin: 0;
  padding-left: 75px;
}

.page-header__title span {
  font-size: 28px;
  font-weight: bold;
}

.page-main__information {
  margin: 0;
  padding: 2% 0;
  border-radius: 30px 30px 0 0;
  font-weight: bold;
  font-size: 3vw;
  line-height: 56px;
  color: white;
  text-align: center;
  background-color: #2196F3;
}

.information__link-list {
  margin: 50px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.information__link-item {
  width: 80%;
  max-width: 800px;
}

.information__link-item:not(:last-child) {
  margin-bottom: 40px;
}

.information__link {
  position: relative;
  display: flex;
  align-items: center;
  color: black;
  padding: 5% 5% 5% 18%;
  text-decoration: none;
  background: #fbfbfb;
  border: 1px solid rgba(33, 150, 243, 0.5);
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(33, 150, 243, 0.15);
  border-radius: 30px;
}

.information__link:hover {
  background: #ffffff;
  border: 1px solid #2196f3;
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.25);
}

.information__link:active {
  background: #ffffff;
  border: 1px solid #2196f3;
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.25);
  opacity: 0.3;
}

.information__link svg {
  left: 5%;
  position: absolute;
  width: 10%;
  height: auto;
}

.information__link h2 {
  font-size: 20px;
  margin-left: 20px;
}

@media screen and (max-width: 650px) {
  .page-header__title svg {
    position: absolute;
  }

  .page-header__title p {
    font-size: 20px;
    margin: 0;
    padding-left: 75px;
  }

  .page-header__title span {
    font-size: 24px;
    font-weight: bold;
  }

  .page-main__information {
    font-size: 18px;
  }

  .information__link svg {
    width: 15%;
    max-width: 50px;
  }

  .information__link h2 {
    font-size: 14px;
  }
}

@media screen and (min-width: 1100px) {
  .page-main__information {
    font-size: 34px;
  }

}
