@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap');
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    background-color: hsl(0, 0%, 95%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-container{
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
}
.containers{
    height: 65vh;
    width: 39vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.con11,.con22,.con33{
    width: 70%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
img{
    width: 72px;
    height: 45px;
}
.con111,.con222,.con333{
    height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;  
}
.con1{
    background-color: hsl(31, 77%, 52%) ;
    border-top-left-radius: 10px;
    border-bottom-left-radius:10px ;
}
.con2{
    background-color: hsl(184, 100%, 22%);
}
.con3{
    background-color: hsl(179, 100%, 13%);
    border-top-right-radius: 10px;
    border-bottom-right-radius:10px ;
}
p{
    height: 25%;
    font-size: 15px;
    color: hsla(0, 0%, 100%, 0.75);
    font-family: 'Lexend Deca', sans-serif;
    
}
h1{
    color: hsl(0, 0%, 95%);
    font-size: 2.5rem;
    font-family: 'Big Shoulders Display', cursive;
}
.btn{
    background-color: hsl(0, 0%, 95%);
    width: 70%;
    font-size: 17px;
    height: 13%;
    font-weight:700 ;
    font-family: 'Lexend Deca', sans-serif;
    border-style: none;
    border-radius:50px ;
}
.orange{
    color:hsl(31, 77%, 52%) ;
}
.orange:hover{
    color: hsl(0, 0%, 95%);
    background-color: hsl(31, 77%, 52%);
    border: 2px solid hsl(0, 0%, 95%);
}
.blue{
    color: hsl(184, 100%, 22%);
}
.blue:hover{
    color: hsl(0, 0%, 95%);
    background-color: hsl(184, 100%, 22%);
    border: 2px solid hsl(0, 0%, 95%);
}
.green{
    color: hsl(179, 100%, 13%);
}
.green:hover{
    color: hsl(0, 0%, 95%);
    background-color: hsl(179, 100%, 13%);
    border: 2px solid hsl(0, 0%, 95%);
}

@media(max-width:884px){
    .main-container{
        display: flex;
        flex-direction: column;
    }
    .con1{
        background-color: hsl(31, 77%, 52%) ;
        border-top-left-radius: 10px;
        border-bottom-left-radius:0px ;
        border-top-right-radius: 10px;
    }
    .con3{
        background-color: hsl(179, 100%, 13%);
        border-top-right-radius: 0px;
        border-bottom-right-radius:10px ;
        border-bottom-left-radius: 10px;
    }
}