html {
  position: relative;
  min-height: 100%;
}

@font-face {
  font-family: "D14M";
  src: url("./DSEG14Modern-Regular.woff") format("woff");
}

.D14M {
  font-family: "D14M";
}

.grad-purple {
  background: linear-gradient(
    135deg,
    rgb(87, 77, 137) 0%,
    rgb(52, 44, 91) 50%,
    rgb(29, 21, 72) 50%,
    rgb(21, 20, 38) 100%
  );
}

.collapsing {
  -webkit-transition: none;
  transition: none;
  display: none;
}

body {
  padding-top: 98px;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #ffffff 50%,
    #f0f0f0 50%,
    #f0f0f0
  );
  /* The rectangle in which to repeat. 
     It can be fully wide in this case */
  background-size: 100% 4px;
}

.offset:before {
  display: block;
  content: "";
  height: 6rem;
  margin-top: -6rem;
}

.banner {
  /* Here's the trick */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(bg.jpg) center bottom;
  background-size: cover;

  /* Here's the same styles we applied to our content-div earlier */
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner h2 {
  margin: 0;
  padding: 0;
  font-size: 2.8em;
  font-weight: 1000;
  text-transform: uppercase;
}

.banner p {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  line-height: 1.5em;
}

.card-deck
{
    padding-top: 1em;
}

.btnD1 {
  display: inline-block;
  margin: 1em 0 0;
  padding: 10px 20px;
 /* background: #ff2670;*/

  background: linear-gradient(135deg,
  rgb(254,225,185) 0%,
rgb(204,105,172) 20%,
rgb(79,67,153) 40%,
rgb(0,101,173) 80%,
rgb(39,212,244) 100%
  );
  color: #fff;
  text-transform: uppercase;
  border: none;
  font-weight: 800;
}

.nav-link
{
    font-weight: 800;
    font-size: 1.5em;
}

.btnD1:hover {
  color: #fff;
  text-decoration: none;
}

header {
  position: absolute;
  z-index: 10;
  width: 100%;
}

.navbar {
  padding: 20px 0;
}

.navbar-brand {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2em;
  color: #ffffff;
}

.car-image {
  width: 100%;
  height: 15vw;
  object-fit: cover;
}