/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap"); /* font-family: 'Lexend Deca', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&display=swap"); /* font-family: 'Big Shoulders Display', cursive; */

/* COLORS */
:root {
  --Bright-orange: hsl(31, 77%, 52%);
  --Dark-cyan: hsl(184, 100%, 22%);
  --Very-dark-cyan: hsl(179, 100%, 13%);
  --Transparent-white-paragraphs: hsla(0, 0%, 100%, 0.6);
  --Very-light-gray-background-headings-buttons: hsl(0, 0%, 95%);
}

/* RESETS */

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

img {
  max-width: 100%;
}

/* CODE */

body {
  font-family: "Big Shoulders Display", cursive;
  background-color: var(--Very-light-gray-background-headings-buttons);
}

p {
  font-family: "Lexend Deca", sans-serif;
  color: var(--Transparent-white-paragraphs);
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 32px;
}

h1 {
  color: var(--Very-light-gray-background-headings-buttons);
  margin-top: 32px;
  margin-bottom: 32px;
}

.container {
  display: flex;
  flex-direction: column;
  width: 325px;
  height: 1326px;
  margin: 87.5px auto 87.5px auto;
}

.container__sedan {
  height: 442px;
  background-color: var(--Bright-orange);
  border-radius: 10px 10px 0 0;
  padding: 45px;
}

.container__suv {
  height: 442px;
  background-color: var(--Dark-cyan);
  padding: 45px;
}

.container__luxury {
  height: 442px;
  background-color: var(--Very-dark-cyan);
  border-radius: 0 0 10px 10px;
  padding: 45px;
}

button {
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  background: none;
  border: transparent;
  background-color: var(--Very-light-gray-background-headings-buttons);
  padding: 14.5px 32px 14.5px 32px;
  border-radius: 30px;
  cursor: pointer;
}

.btn__orange {
  color: var(--Bright-orange);
}

.btn__cyan {
  color: var(--Dark-cyan);
}

.btn__dark__cyan {
  color: var(--Very-dark-cyan);
}

button:hover {
  color: var(--Very-light-gray-background-headings-buttons);
  transition: all 0.3s ease-in-out;
  border: solid;
  border-color: var(--Very-light-gray-background-headings-buttons);
}

.btn__orange:hover {
  background-color: var(--Bright-orange);
}

.btn__cyan:hover {
  background-color: var(--Dark-cyan);
}

.btn__dark__cyan:hover {
  background-color: var(--Very-dark-cyan);
}

/* ATTRIBUTIONS */
.attribution {
  font-size: 11px;
  text-align: center;
  position: absolute;
  top: 1413.5px;
  left: 25px;
  right: 25px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

/* DESKTOP */
@media (min-width: 376px) {
  .container {
    flex-direction: row;
    justify-content: center;
    height: 500px;
    width: 920px;
  }

  .container__sedan {
    height: inherit;
    border-radius: 10px 0 0 10px;
  }

  .container__suv {
    height: inherit;
  }

  .container__luxury {
    height: inherit;
    border-radius: 0 10px 10px 0;
  }

  button {
    margin-top: 60px;
  }

  .attribution {
    top: 590px;
  }
}
