h1 {
    text-align: center;
    
}

body {
    margin: 0 auto;
    padding: 0;
    width: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.h1-1 {
    font-family: poppins, sans-serif;
    font-weight: 200;
}

.h1-2 {
    font-family: poppins, sans-serif;
    font-weight: 600;
    color: hsl(234, 12%, 34%);
}

.h1-2, .h3-1 {
    position: relative;
    bottom: 3vh;
}

.h3-1 {
    text-align: center;
    font-family: poppins, sans-serif;
    font-weight: 400;
    color: hsl(212, 6%, 44%);
    font-size: 14px;
    position: relative;
    bottom: 50px;
}

.h3-2, .h3-3, .h3-4, .h3-5 {
    font-family: poppins, sans-serif;
    font-size: 18px;
    color: hsl(234, 12%, 34%);
}

p {
    font-family: poppins;
    font-weight: 400;
    font-size: 12px;
}



.main-div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 6vh
}

img {
    padding-left: 65%;
}

.h3-2, .h3-3, .h3-4, .h3-5, p {
    text-align: left;
    padding-left: 2vw;
}

.box-1 {
    border-top: 4px solid hsl(180, 62%, 55%);
}

.box-2 {
    border-top: 4px solid hsl(0, 78%, 62%);
}

.box-3 {
    grid-column: 2/3;
    grid-row: 2;
    margin-top: 1vh;
    border-top: 4px solid hsl(34, 97%, 64%);
    
}

.box-4 {
    border-top: 4px solid hsl(212, 86%, 64%);
}

.box-1, .box-4 {
    position: relative;
    top: 50%;
}

.box-1, .box-2, .box-3, .box-4 {
    padding-bottom: 3vh;
    padding-top: 1vh;
    box-shadow: grey 1px 1px 10px 1px;
    border-radius: 5px;
    padding-right: 1vw;
}

@media only screen and (max-width: 575px) {
    .main-div {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    .box-1, .box-4 {
        position: relative;
        top: 0%;
    }
    .box-1 {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .box-2 {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .box-3 {
        grid-column: 1/2;
        grid-row: 3/4;
    }
    body {
        overflow: scroll;
    }

    .h1-2 {
        position: relative;
        bottom: 40px;
    }

    .h3-1 {
        position: relative;
        bottom: 60px
    }
    .box-1, .box-2, .box-3, .box-4 {
        padding-left: 2vw
    }
}