body {
  background-color: #fff8f0;
}
h1,
h2,
h3,
h4 {
  font-family: Roboto, sans-serif;
  font-weight: bold;
  color: #02111b;
}

p {
  font-family: Nunito Sans, sans-serif;
}
.container {
  max-width: 1595px;
}
.header {
  font-weight: 600;
}
.card {
  background-color: #fff8f0;
}
.navbar {
  background-color: #3a3335;
}
.col-xl-2 {
  font-family: Roboto, sans-serif;
  color: #02111b;
}
p {
  font-size: 1.3em;
  color: #02111b;
}
footer {
  background-color: #3a3335;
}
.bg-secondary {
  background-color: #c7c7a6 !important;
}
.bg-info {
  background-color: #cc683e !important;
}
.bg-warning {
  background-color: #cc683e !important;
}
.bg-danger {
  background-color: #086375 !important;
}
.bg-success {
  background-color: #a5668b !important;
}
.progress-bar {
  width: 0;
  animation: fillProgress 2s ease-in-out;
}
@keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: var(--progress-width);
  }
}
