* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 95%);
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  height: 100vh;
  display: flex;
  align-items: center;
}

.card {
  display: flex;
  width: 67%;
  max-width: 965px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.car {
  padding: 50px;
}
.car h2 {
  color: hsl(0, 0%, 95%);
  font-weight: 300;
  font-size: 36px;
  font-family: "Big Shoulders Display", cursive;
  text-transform: uppercase;
  margin: 30px 0;
}
.car p {
  color: hsla(0, 0%, 100%, 0.75);
  margin-bottom: 70px;
  line-height: 1.7em;
}
button {
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  padding: 12px 30px;
  border: none;
  border-radius: 24px;
  border: 2px solid hsl(0, 0%, 95%);
  background-color: hsl(0, 0%, 95%);
  cursor: pointer;
}

.sedans {
  background-color: hsl(31, 77%, 52%);
}
.sedans button {
  color: hsl(31, 77%, 52%);
}

.suvs {
  background-color: hsl(184, 100%, 22%);
}
.suvs button {
  color: hsl(184, 100%, 22%);
}
.luxury {
  background-color: hsl(179, 100%, 13%);
}
.luxury button {
  color: hsl(179, 100%, 13%);
}

button:hover {
  background: none;
  color: hsl(0, 0%, 95%);
}

@media (max-width: 950px) {
  .card {
    width: 85%;
  }
}

@media (max-width: 760px) {
  body {
    height: 170vh;
  }
  .card {
    flex-direction: column;
  }
}
