@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');
/* font-family: 'Lexend Deca', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&display=swap');
/* font-family: 'Big Shoulders Display', cursive; */


.body {
    color: hsl(0, 0%, 95%);
}

.container {
    display: flex;
    justify-content: center;
    margin-top: 150px;
}

.header {
    font-family: 'Big Shoulders Display', cursive;
    color: hsl(0, 0%, 95%);
    padding-left: 40px;
    text-transform: uppercase;
}

.text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 15px;
    color: hsla(0, 0%, 100%, 0.75);
    padding-left: 40px;
    width: 55%;
    line-height: 23px;
}

.button {
    font-family: 'Lexend Deca', sans-serif;
    margin-left: 40px;
    margin-top: 45px;
    height: 40px;
    width: 125px;
    border:hsl(0, 0%, 95%);
    border-radius: 20px;
    color: hsl(31, 77%, 52%);
}

.button:hover {
    font-family: 'Lexend Deca', sans-serif;
    margin-left: 40px;
    margin-top: 45px;
    height: 40px;
    width: 125px;
    border: 2px solid hsl(0, 0%, 95%);
    border-radius: 20px;
    color: white;
    background-color:hsl(31, 77%, 52%);
}

.button2 {
    font-family: 'Lexend Deca', sans-serif;
    margin-left: 40px;
    margin-top: 45px;
    height: 40px;
    width: 125px;
    border:hsl(0, 0%, 95%);
    border-radius: 20px;
    color: hsl(184, 100%, 22%);
}

.button2:hover {
    font-family: 'Lexend Deca', sans-serif;
    margin-left: 40px;
    margin-top: 45px;
    height: 40px;
    width: 125px;
    border:hsl(0, 0%, 95%);
    border-radius: 20px;
    background-color: hsl(184, 100%, 22%);
    border: 2px solid hsl(0, 0%, 95%);
    color: white;
}

.button3 {
    font-family: 'Lexend Deca', sans-serif;
    margin-left: 40px;
    margin-top: 45px;
    height: 40px;
    width: 125px;
    border:hsl(0, 0%, 95%);
    border-radius: 20px;
    color: hsl(179, 100%, 13%);
}

.button3:hover {
    font-family: 'Lexend Deca', sans-serif;
    margin-left: 40px;
    margin-top: 45px;
    height: 40px;
    width: 125px;
    border:hsl(0, 0%, 95%);
    border-radius: 20px;
    background-color: hsl(179, 100%, 13%);
    border: 2px solid hsl(0, 0%, 95%);
    color: white;
}

.card1 {
    background-color: hsl(31, 77%, 52%);
    width: 300px;
    height: 450px;
    border-radius: 10px 0 0 10px;
}

.card2 {
    background-color: hsl(184, 100%, 22%);
    width: 300px;
    height: 450px;
}

.card3 {
    background-color: hsl(179, 100%, 13%);
    width: 300px;
    height: 450px;
    border-radius: 0 10px 10px 0px;
}

.icon {
    padding-top: 40px;
    padding-left: 40px;
}

