@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header {
  align-items: center;
  background-color: #FFFFFF;
  height: 64px;
  padding: 16px;
  border-bottom: 1px solid #E1E1E1;
  width: 100%;
}
header img {
  height: 24px;
}
.header-image {
  height: 200px;
  width: 100%;
  background-image: url('../images/Cabecera app_ 2.png');
  background-size: cover;
  background-position: center;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
}
h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #505050;
  text-align: center;
  width: 90%;
  margin-top: 40px;
  text-wrap: balance;
}
p {
  color: #505050;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 24px;
  margin-right: 24px;
  margin-left: 24px;
  text-align: center;
}
footer {
  border-top: 1px solid #E1E1E1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
}
footer p {
  font-size: 12px;
  font-weight: 400;
  color: #888888;
  line-height: 16px;
  margin-top: 40px;
  text-align: center;
}
ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin-top: 82px;
}
li img {
  height: 32px;
}