/* Containers */
.container {
  width: 100%;
  max-width: 1320px;
  padding-inline: var(--p-md);
  margin: 0 auto;
}

/* Alignment*/

.alignleft {
  float: left;
  margin: 0 24px 24px 0;
}
.alignright {
  float: right;
  margin: 0 0 24px 24px;
}
.centered,
.aligncenter {
  display: block;
  margin: 0 auto 30px;
}

/* Fonts */

h1 {
  font-family: var(--font-titles);
  font-size: var(--font-h1);
  font-weight: 400;
}
h2 {
  font-family: var(--font-titles);
  font-size: var(--font-h2);
  font-weight: 400;
}
h3 {
  font-family: var(--font-titles);
  font-size: var(--font-h3);
  font-weight: 400;
}
h4 {
  font-family: var(--font-titles);
  font-size: var(--font-h4);
  font-weight: 400;
}
h5 {
  font-family: var(--font-titles);
  font-size: var(--font-h5);
  font-weight: 400;
}
p {
  font-size: var(--font-p);
  text-align: justify;
}
p:not(:last-child) {
  margin-bottom: var(--p-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: calc(var(--p-md) - 4px) var(--p-lg);
  background-color: var(--color-principal);
  color: var(--color-light);
  font-size: var(--font-p);
  transition: background-color var(--tr-short-time) var(--tr-simple);
  border: none;

  &:hover {
    background-color: var(--color-seccondary);
  }
}
