html {
    box-sizing: border-box;
    font-family: 'Lexend Deca', sans-serif;
}

body {
    background-color: hsl(0, 0%, 95%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.panel {
    padding: 15px 25px;
    width: 100%;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    text-align: start;
}

.pricing-plan {
    color: hsla(0, 0%, 100%, 0.75);
    padding: 5.5vh;
}

.pricing-plan:first-child {
    background-color: hsl(31, 77%, 52%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.pricing-plan:nth-of-type(2) {
    background-color: hsl(184, 100%, 22%);
}

.pricing-plan:last-child {
    background-color: hsl(179, 100%, 13%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pricing-header {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    color: hsl(0, 0%, 95%);
    font-size: 2.5em;
}

.info {
    line-height: 1.75em;
}
button {
    width: 150px;
    height: 50px;
    border-radius: 25px;
    border: none;
    margin-top: 85px;
    font-size: 16px;
    background-color: hsl(0, 0%, 95%);
    font-weight: 400;
}

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

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

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

.learn-more-sedan:hover {
    color: hsla(0, 0%, 100%, 0.75);
    background-color:hsl(31, 77%, 52%);
    border: 2px solid hsla(0, 0%, 100%, 0.75);
    cursor: pointer;
}

.learn-more-suv:hover {
    color: hsla(0, 0%, 100%, 0.75);
    background-color: hsl(184, 100%, 22%);
    border: 2px solid hsla(0, 0%, 100%, 0.75);
    cursor: pointer;
}

.learn-more-luxury:hover {
    color: hsla(0, 0%, 100%, 0.75);
    background-color: hsl(179, 100%, 13%);
    border: 2px solid hsla(0, 0%, 100%, 0.75);
    cursor: pointer;
}

@media (min-width:900px) {
    .panel {
        flex-direction: row;
    }
}

@media (max-width:500px) {
    .panel {
        flex-direction: column;
    }

    .pricing-plan:first-child {
        border-top-right-radius: 10px;
        border-bottom-left-radius: none;
    }
    .pricing-plan:nth-of-type(3) {
        border-top-right-radius: none;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    button {
        margin-top: 25px;
    }
}