@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: hsl(0, 0%, 95%);
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
}

.containers{
    display: flex;
    flex-direction: row;
    width: 850px;
    margin-top: 90px;
    margin-bottom: 70px;
}

.cont-1{
    display: flex;
    flex-direction: column;
    background-color: hsl(31, 77%, 52%);
    border-radius: 7px 0 0 7px;
    padding: 35px;
    gap: 25px;
}
.cont-2{
    display: flex;
    flex-direction: column;
    background-color: hsl(184, 100%, 22%);
    padding: 35px;
    gap: 25px;
}
.cont-3{
    display: flex;
    flex-direction: column;
    background-color: hsl(179, 100%, 13%);
    padding: 35px;
    border-radius: 0 7px 7px 0;
    gap: 25px;
}
img{
    width: 55px;
}
h1{
    font-family: Big Shoulders Display;
    color: hsl(0, 0%, 95%);
}
p{
    font-family: Lexend Deca;
    color: hsla(0, 0%, 100%, 0.75);
    tab-size: 15px;
    line-height: 1.5;
}
.button{
    margin-top: 35px;
    border-radius: 25px;
    border: 3px solid white;
    width: fit-content;
}
button{
    border: 3px white;
    border-radius: 20px;
    width: fit-content;
    padding: 10px 20px;
    font-weight: 600;
}
.b-1{
    color: hsl(31, 77%, 52%);
}
.b-2{
    color: hsl(184, 100%, 22%);
}
.b-3{
    color: hsl(179, 100%, 13%);
}
button:hover{
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    color: hsl(0, 0%, 95%);
}
.para{
    color: black;
}

@media (max-width:900px){
    .containers{
        display: flex;
        flex-direction: column;
        width: 300px;
        margin-top: 90px;
        margin-bottom: 70px;
    }
    .cont-1{
        border-radius: 7px 7px 0 0;
    }
    .cont-3{
        border-radius: 0 0 7px 7px;
    }
    .button{
        margin-top: 0px;
    }
}