* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Cause", sans-serif;
  font-size: 1.6rem;
  background: #f3e5f1;
  color: darkblue;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header img {
  width: 130px;
  height: auto;
  border-radius: 1rem;
}

main {
  width: 80%;
  margin: auto;
  padding-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 5rem;
  font-weight: 1000;
  line-height: 1.3;
  margin: 2rem 0;
}

h2 {
  color: #3523aa;
  font-size: 2.4rem;
  font-weight: 1000;
  line-height: 1.2;
  text-align: center;
  margin: 2rem 0;
}

.btn {
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1.5rem;
  border-radius: 1rem;
}

header,
footer {
  background: rgb(111, 75, 153);
  color: antiquewhite;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.div-logo {
  margin-left: 2rem;
}

.logo,
.header-nav ul li a {
  text-decoration: none;
  font-size: 3rem;
  color: inherit;
  display: inline-block;
  padding: 1rem;
}

.header-nav ul,
footer .footer-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.footer-list li {
  padding: 0.5rem;
}

.footer-list img {
  width: 5rem;
  padding: 0.5rem;
}
/* -------------------------------------------------------------------------- */
/*                                   COLORES                                  */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                                    HOME                                    */
/* -------------------------------------------------------------------------- */
.parrafo {
  width: 80%;
  text-align: center;
  font-size: 2rem;
  padding: 3rem;
}

.contenedor-tarjetas {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.tarjeta {
  margin: 1rem;
  background: hsl(261, 79%, 77%);
  color: #3523aa;
  width: 40rem;
  padding-bottom: 2rem;

  border-radius: 1rem;
  overflow: hidden;
}

.tarjeta img {
  width: 100%;
  height: 20 rem;
  object-fit: cover;
}

/* -------------------------------------------------------------------------- */
/*                                  CONTACTO                                  */
/* -------------------------------------------------------------------------- */
.titulo-contacto {
  margin: 2rem 0;
}

.form-contacto {
  background-color: hsl(261, 79%, 77%);
  color: rgb(111, 75, 153);
  width: 100%;
}
