/* Estilos de reseteo básicos */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Bloquear elementos que heredan la capacidad de ser flexibles */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Reseteo de listas */
/* ol,
ul {
  list-style: none;
} */

/* Reseteo de citas */
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* Reseteo de tablas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Definición de base de línea para el cuerpo del texto */
body {
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
li {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

b {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}

i {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

h1 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
}

h2 {
  font-family: "Titillium Web", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1;
}

h3{
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
}
p {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;

}

header {
  background-color: black;
  background-image: url(./header.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

main {
  margin-top: 16px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0px;
}

a {
  cursor: pointer;
  color: #556EB3;
  text-decoration: underline;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: rgba(55, 65, 81, 1);
  width: 100%;
  box-sizing: border-box;
}

.title {
  display: flex;
  flex-direction: column;
  color: white;
  width: 100%;
  justify-content: space-between;
  margin-top: 16px;
  gap: 16px;
}


@media(min-width: 769px) {
  p{
    text-align: justify;
  }
  .title {
    flex-direction: row;
    align-items: flex-end;
  }
}