@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

:root {
    --Red: hsl(0, 78%, 62%);
    --Cyan: hsl(180, 62%, 55%);
    --Orange: hsl(34, 97%, 64%);
    --Blue: hsl(212, 86%, 64%);
    --Grey-500: hsl(234, 12%, 34%);
    --Grey-400: hsl(212, 6%, 44%);
    --White: hsl(0, 0%, 96%);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: 'Poppins',sans-serif;
    font-size: 15px;
    background-color: var(--White);
    color: var(--Grey-400);
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
}

header{
    text-align: center;
}

header h2{
    font-size: 34px;
    font-weight: 200;
    color: var(--Grey-500 );
}

header h3{
    font-size: 34px;
    font-weight: 600;
    color: var(--Grey-500 );
}
header p{
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

.main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:25px;
    margin-top: 60px;
}


.box{
    background-color: white;
    border-radius: 7px;
    padding: 30px;
    text-align: right;
    box-shadow: 0px 10px 10px rgb(219, 219, 219);
}

.box-text{
    text-align: left;
    padding-bottom: 50px;
}

.box1{
    border-top: 4px solid var(--Cyan);
}

.box2{
    border-top: 4px solid var(--Red);
}

.box3{
    border-top: 4px solid var(--Orange);
}

.box4{
    border-top: 4px solid var(--Blue);
}

.box h5{
    color: var(--Grey-500);
    font-size: 20px;
    margin-bottom: 10px;
}

.box-container{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.box1,.box4{
    align-self: center;
}

@media only screen and 
(max-width: 768px){
    .main{
        grid-template-columns: 1fr
    }
}
    
@media only screen and 
(max-width: 425px){
    body{
        font-size: 13px;
    }

    header h2{
        font-size: 22px;
    }

    header h3{
        font-size: 20px;
    }

    .box{
        padding: 20px;
    }

    .bow-text{
        padding-bottom: 30px;
    }
}