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

body {
    min-height: 100vh;
    overflow: hidden;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    flex-direction:row;
}

.box1, .box2, .box3 {
    width: 300px;
    height: 470px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    position: relative;
}

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

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

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

.car-icon {
    margin-bottom: 80px;
    display: block;
    width: 64px;
    height: 40px;
}

.car-icon circle {
    opacity: 0.2;
}

h1 {
    font-size: 35px;
    font-family: "Big Shoulders Display", cursive;
    font-weight: 700;
    color: hsl(0, 0%, 95%);
    margin-bottom: 35px;
}

p {
    font-size: 15px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    color: hsla(0, 0%, 100%, 0.75);
    line-height: 1.6;
    margin-bottom: 60px;
}

button {
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    cursor: pointer;
}

.learn-more {
    display: inline-block;
    width: 150px;
    height: 50px;
    border: 2px solid hsl(0, 0%, 95%);
    border-radius: 25px;
    font-size: 15px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    background: hsl(0, 0%, 95%);
    transition: all 0.3s ease;
    margin: 0;
    position: absolute;
    bottom: 50px;
}

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

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

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

.learn-more:hover {
    background: transparent;
    color: hsl(0, 0%, 95%);
}


