body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend Deca', tahoma;
}
a {
    display: block;
    width: 150px;
    height: 38px;
    border-radius: 50px;
    background-color: hsl(0, 0%, 95%);
    text-align: center;
    padding-top: 12px;
    text-decoration: none;
}
h1 {
    font-family: 'Big Shoulders Display', tahoma;
    font-weight: 700;
    font-size: 45px;
    color:hsl(0, 0%, 95%) ;
}
h3 {
    font-weight: 400;
    color: hsla(0, 0%, 100%, 0.75);
    font-size: 15px;
    line-height: 25px;
}
#background {
    background-color: hsl(0, 0%, 95%);
    width: 1440px;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#allcards {
    width: 801px;
    height: 500px;
    display: flex;
    flex-direction: row;
}
#sedans {
    width: 207px;
    height: 420px;
    background-color: hsl(31, 77%, 52%);
    border-radius: 10px 0 0 10px;
    padding: 40px;
    padding-right: 20px;
}
#suvs {
    width: 207px;
    height: 420px;
    background-color: hsl(184, 100%, 22%);
    padding:40px;
    padding-right: 20px;
}
#luxury {
    width: 207px;
    height: 420px;
    background-color: hsl(179, 100%, 13%);
    border-radius: 0 10px 10px 0;
    padding:40px;
    padding-right: 20px;
}
#a1 {
    color:hsl(31, 77%, 52%) ;
}
#a2 {
    color:hsl(184, 100%, 22%)
}
#a3 {
    color:hsl(179, 100%, 13%)
}
#a1:hover {
    background-color:hsl(31, 77%, 52%) ;
    color:hsl(0, 0%, 95%) ;
    border: 1px solid hsl(0, 0%, 95%);
}
#a2:hover {
    background-color:hsl(184, 100%, 22%) ;
    color:hsl(0, 0%, 95%) ;
    border: 1px solid hsl(0, 0%, 95%)
}
#a3:hover {
    background-color:hsl(179, 100%, 13%) ;
    color:hsl(0, 0%, 95%) ;
    border: 1px solid hsl(0, 0%, 95%)
}
