 *{
     box-sizing: border-box;
 }

body {
    background-color: hsl(0, 0%, 98%);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

header {
    margin: 50px auto;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-weight: 200;
    margin: 0%;
}

h1 span {
    font-weight: 600;
}

p {
    color: hsl(229, 6%, 66%);
}


.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1140px;

}

.box {
    background-color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05), 0 6px 6px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 15px;
    width: 350px;
}

.box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
}

.box-red::after {
    background-color: hsl(0, 78%, 62%);
}

.box-cyan::after {
    background-color: hsl(180, 62%, 55%);
}

.box-orange::after {
    background-color: hsl(34, 97%, 64%);
}

.box-blue::after {
    background-color: hsl(212, 86%, 64%);
}

.box-push {
    transform: translateY(50%);
}

.box h2 {
    margin: 0%;
    color: hsl(234, 12%, 34%);
}

.box p {
    font-size: 15px;
    margin: 15px 0 30px;
}
.box img {
    display: block;
    margin-left: auto;
}
footer {
    text-align: center;
}


@media (max-width: 775px) {
    .box-push {
        transform: translateY(0);
    }
}