*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --ff1: 'Big Shoulders Display', cursive;
    --ff2: 'Lexend Deca', sans-serif;

    /* ---------------- Primary colors --------------- */

--Bright-orange: hsl(31, 77%, 52%);
--Dark-cyan: hsl(184, 100%, 22%);
--Very-dark-cyan: hsl(179, 100%, 13%);

/* -------------Neutral colors---------------- */

--paragraphs: hsla(0, 0%, 100%, 0.75);

--background-headings-buttons: hsl(0, 0%, 95%);

}
body{
    background-color: var(--background-headings-buttons);
}

p{
    font-size: 15px;
    font-family: var(--ff2);
}

.row{
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);


}


.col1, .col2, .col3 {
    width: 300px;
    color: var(--paragraphs);
    padding: 20px 40px;
    padding-top: 40px;
}

.col1{
    background-color: var(--Bright-orange);
    border-radius: 5px 0 0 5px;

}

.col2{
    background-color: var(--Dark-cyan);
}

.col3{
    background-color: var(--Very-dark-cyan);
    border-radius: 0 5px 5px 0;
}

.heading{
    color: var(--background-headings-buttons);
    display: block;
    font-family: var(--ff1);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    padding: 30px 0;
}

.learn-more{
    color: black;
    cursor: pointer;
    mix-blend-mode: screen;
    text-align: center;
    display: block;
    background-color: var(--background-headings-buttons);
    border-radius: 25px;
    padding: 15px;
    margin-bottom: 20px;
    margin-left: 0;
    font-weight: 700;
    width: 70%;
    position: relative;
    bottom: 0;
}

.learn-more:hover{
    color: var(--background-headings-buttons);
    border: 2px solid var(--background-headings-buttons);
    background: transparent;
}

.text-container{
    padding-bottom: 100px;
}


/* --------------------------------------------- */

@media screen and (max-width:375px) {

    .row{
        display: flex;       
        flex-direction: column;
        margin-top: 247px;
    }
    .text-container{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .col1{
        border-radius: 5px 5px 0 0 ;
    }
    .col3{
        border-radius: 0 0 5px 5px;
    }
}
