/* Font-sizes(px): 
10/12/14/16/18/20/24/30/36/44/52/62/74/86/98 

- SPACING SYSTEM (px)
2/4/8/12/16/24/32/48/64/80/96/128 */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  /* width: 62.5%; */
  font-size: 62.5%;
}

.container {
  display: grid;
  grid-template-columns: 25rem 25rem 25rem;
  border-radius: 0.5rem;
  overflow-x: hidden;
}
body {
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  font-family: "Karla", sans-serif;
}

.car-name {
  text-transform: uppercase;
  color: hsl(0, 0%, 95%);
  font-size: 3rem;
  letter-spacing: -0.2rem;
  font-weight: 500;
  margin: 2rem 0rem;
}
.content {
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 1.4rem;
  font-weight: 450;
  line-height: 2rem;
  margin-bottom: 9rem;
}
.button:link,
.button:visited {
  color: hsl(31, 77%, 52%);
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 2rem;
  background-color: hsl(0, 0%, 95%);
  font-size: 1.5rem;
  font-weight: 700;
  align-self: flex-start;
}
.button:hover,
.button:active {
  background-color: hsl(31, 77%, 52%);
  color: hsla(0, 0%, 100%, 0.75);
  border: 2px solid hsla(0, 0%, 100%, 0.75);
}
.second-section .button:last-child:link,
.second-section .button:last-child:visited {
  color: hsl(184, 100%, 22%);
}
.second-section .button:last-child:hover,
.second-section .button:last-child:active {
  background-color: hsl(184, 100%, 22%);
  color: hsla(0, 0%, 100%, 0.75);
  border: 2px solid hsla(0, 0%, 100%, 0.75);
}
.third-section .button:last-child:link,
.third-section .button:last-child:visited {
  color: hsl(179, 100%, 13%);
}
.third-section .button:last-child:hover,
.third-section .button:last-child:active {
  background-color: hsl(179, 100%, 13%);
  color: hsla(0, 0%, 100%, 0.75);
  border: 2px solid hsla(0, 0%, 100%, 0.75);
}

.first-section {
  background-color: hsl(31, 77%, 52%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.second-section {
  background-color: hsl(184, 100%, 22%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.third-section {
  background-color: hsl(179, 100%, 13%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
