@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Ubuntu:wght@400;700&display=swap');

/* ---------------------------------------------------
    GLOBAL
----------------------------------------------------- */
body {
  font-family: 'Ubuntu', sans-serif;
}

header, main, footer {
    padding-left: 300px;
  }

h1, h2 {
  color: #e91e63;
  font-weight: 700;
}

.bold {
  font-weight: 700 !important;
}

.regular {
  font-weight: 400 !important;
}

.small {
  font-size: 0.5rem;
}

.pacifico {
  font-family: 'Pacifico', cursive;
}

.errorlist {
  color: #e91e63;
}

.uppercase {
  text-transform: uppercase;
}

.pill {
  font-size: 1rem;
  padding: 5px;
  border-radius: 5px;
}

/* ---------------------------------------------------
    Media Queries
----------------------------------------------------- */
@media only screen and (max-width : 992px) {
  header, main, footer {
    padding-left: 0;
  }
  .modal {
    width: 75%;
  }
}