@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap);
.app {
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #444;
}
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
	background-image: url('../images//bg.png');
	background-size: cover;
}
.header h1 {
  width: 100%;
  text-align: center;
}
.header h1 > img {
  width: 80%;
  max-width: 360px;
}
.header h2 {
  width: 75%;
  max-width: 260px;
  padding: 10px 30px;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  background-color: #0985c8;
  border-radius: 30px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 0;
  margin: 60px 0 0;
  text-align: right;
  border-top: 1px solid #ccc;
}
.footer a {
  color: #444;
	text-decoration: none;
  font-size: 0.8rem;
}
.footer a:hover {
  opacity: 0.5;
}
.content {
  width: 80%;
  padding: 0 30px;
  margin: 60px auto 0;
}
@media screen and (min-width: 760px) {
  .content {
    width: 700px;
  }
}
.content__container {
  margin: 30px 0 0 0;
}
.content__intro {
  padding: 24px;
  margin: 0;
  background-color: rgba(224, 231, 237, 0.5) ;
  border-radius: 10px;
}
.content__budge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px 0 0 0;
}
.content__budge a:hover {
 opacity: 0.7;
}

@media screen and (min-width: 760px) {
  .content__budge {
    flex-direction: row;
  }
}
.content__budge__os {
  width: 90%;
  padding: 10px 0 20px;
  margin: 10px auto;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 10px;
}
@media screen and (min-width: 760px) {
  .content__budge__os {
    width: 40%;
    margin: 0 10px;
  }
}
.content__budge__os p img {
  width: 150px;
}
.content__budge a {
  display: block;
  margin: 20px 0 0;
}
.content__legal {
  margin: 30px 0 0 0;
  font-size: 0.85rem;
  list-style-type: circle;
}
