* {
  margin: 0;
  padding: 0;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-size: 1.8rem;
  line-height: 1;
  font-family: var(--font-base);
}

.bg-mantenimiento {
  background-size: cover;
  background-position: center center;
}

.container {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  width: 90%;
  max-width: 320px;
  color: var(--text-color);
}
.content__logo {
  max-width: 100%;
}
@media screen and (min-width: 48em) {
  .content {
    padding: 6.4rem;
    max-width: 500px;
    width: 100%;
  }
}
.content__lead {
  font-size: 2.4rem;
  font-family: var(--font-headings);
  font-weight: 700;
}
.content__title {
  font-family: var(--font-headings);
  text-transform: uppercase;
  font-weight: 700;
}
.content__buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

a:link, a:visited {
  color: var(--link-color);
  transition: all 0.2s;
}
a:hover, a:active {
  color: var(--link-hover-color);
}

.button:link, .button:visited {
  color: var(--button-text-color);
  background-color: var(--link-color);
  border: none;
  text-decoration: none;
  transition: all 0.2s;
}
.button:hover, .button:active {
  transform: scale(1.05);
  color: var(--button-text-color);
  background-color: var(--link-hover-color);
}
.button--full:link, .button--full:visited {
  padding: 1.2rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.button--social:link, .button--social:visited {
  font-size: 2.4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button--social:hover, .button--social:active {
  transform: scale(1.2);
}
