html {
  background-color: ivory;
  scroll-behavior: smooth;
}
main .hero {
  background-image: url(/static/front/assets/img/blue-gradient.svg), url(/static/front/assets/img/orange-gradient.svg);
  background-size: 30%, 20%;
  background-position: center left 0%, right 0% top 15%;
  background-repeat: no-repeat, no-repeat;
  padding: 5rem 0;
}
main header {
    position: relative;
    min-height: calc(100vh - 64px);
    overflow: hidden;
          background-size: cover;
          background-position: center center;
          background-repeat: no-repeat;
    margin-bottom: 1rem;
}
main header .row h1 {
  font-size: 7rem;
  font-weight: 700;
  color: white;
  overflow-wrap: anywhere;
}
main header .row button {
  font-weight: 700;
  color: white;
  margin: 4px;
}
main header:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/home.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(4px);
  transition: all 1200ms ease-in-out;
  z-index: -1;
}
main footer {          
  padding: 5rem 0;
}
header nav ul a, a.btn {
  font-weight: 600;
}
.card {
  background-color: ivory;
}
.card .card-title, .card .card-action {
  font-weight: 500;
}
.card .card-content {
  font-weight: 400;
}
.price {
  padding: 0.5rem !important;
  border-radius: 2px;
  margin-left: auto;
  text-align: center;
  width: 25%;
  background-color: white;
  color: #263238;
}
main .hero {
  padding: 5rem 0;
}
main footer {          
  padding: 5rem 0;
}
/* Responsive home title */
@media (max-width: 600px) {
  main header .row h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    overflow-wrap: anywhere;
  }
}