:root {
  --azul-oscuro: #071a2b;
  --azul-principal: #0757c8;
  --azul-brillante: #1683ff;
  --gris-grafito: #202832;
  --gris-claro: #f2f5f8;
  --blanco: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--gris-claro);
  color: var(--gris-grafito);
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
.site-header__logo {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

a,
button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  flex-shrink: 0;
  margin: 0;
}

.site-footer {
  margin-top: auto;
  flex-shrink: 0;
}
