/* 
font-family: "Lexend Deca", sans-serif;
 font-family: "Big Shoulders Display", sans-serif;

*/
body{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.parent{
    width: 60%;
    height: 65vh;
    margin-top: 30px;
    border-radius: 10px;
    font-size: 15px;
    display: flex;

}
.child1{
    background-color: hsl(31, 77%, 52%);
    height: 100%;
    width:calc(100%/3);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
}
.child2{
    background-color: hsl(184, 100%, 22%);
    height: 100%;
    width:calc(100%/3);
    display: flex;
    justify-content: center;
}
.child3{
    background-color: hsl(179, 100%, 13%);
    height: 100%;
    width:calc(100%/3);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
}
.content{
    width: 75%;
    height: 100%;
}
.svg{
    width: 60%;
    margin-top:50px;
    
}
.text{
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 1.6;
    color:  hsla(0, 0%, 100%, 0.75);
    font-family: "Lexend Deca", sans-serif;
    margin-top: -15px;
    
}
h1{
    color: hsl(0, 0%, 95%);
    font-family: "Big Shoulders Display", sans-serif;
}
.text p{
    margin-top: -10px; 
}
.child1 button{
    color:hsl(31, 77%, 52%) ;
    height: 40px;
    width: 120px;
    border: none;
    border-radius: 30px;
}
.child2 button{
    color: hsl(184, 100%, 22%) ;
    height: 40px;
    width: 120px;
    border: none;
    border-radius: 30px;
}
.child3 button{
    color:hsl(179, 100%, 13%);
    height: 40px;
    width: 120px;
    border: none;
    border-radius: 30px;
}
button:hover{
    border: 2px solid hsl(0, 0%, 95%);
    background-color:transparent ;
    color: hsl(0, 0%, 95%);
}
@media(max-width:375px){
    .parent{
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .child1{
        width: 100%;
        border-bottom-left-radius: 0px;
        border-top-right-radius: 10px;
        height: 420px;
    }
    .child2{
        width: 100%;
        height: 420px;
    }
    .child3{
        width: 100%;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 0;
        height: 420px;
    }
    button{
    margin-top: -50;
    }

}