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

.container {
    display: flex;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
}

.card {
    flex-wrap: 1;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card img{
    width: 60px;
    margin-bottom: 20px;
}

.card h2{
    font-family: 'Big Shoulders Display', cursive;
    font-size: 32px;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.card p{
    line-height: 1.6;
    margin-bottom: 30px;
}

.card a{
    background-color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.sedan{
    background-color: hsl(31, 77%, 52%)
    
}

.suv{
    background-color: hsl(184, 100%, 22%);
}

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

.sedan-btn {
  color: hsl(31, 77%, 52%);
}

.suv-btn {
  color: hsl(184, 100%, 22%);
}

.luxury-btn {
  color: hsl(179, 100%, 13%);
}

.btn:hover {
  border-color: white;
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    margin: 20px;
  }
}