* {
    box-sizing: border-box;
}

body {
    text-align: center;
    max-width: 1200px;
    margin: 10vh auto;
}


img {
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
    color: #333;
}

a:hover {
    opacity: 0.6;
}

p {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.4;
}

.lp-list {
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.lp {
    width: 100%;
    flex-basis: calc( 100% / 3 - 3rem);
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    margin: 0.75rem;
    padding: 10px 10px 50px;
}


.wrapper {
    margin-left: 10px;
    margin-right: 10px;
}

h2 {
    border-left: solid 6px #4bc4d3;
    padding: 0.5rem 0 0.5rem 0.7rem;
    margin: 10px 0 1rem 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
    text-align: left;
}


.content {
    padding: 10px;

}

@media screen and (max-width:700px) {


    .lp {
        flex-basis: 100%;
    }

    .lp {
        padding: 10px 0 50px;
    }

    .wrapper {
        padding: 20px 10px 30px;
    }

    .content {
        padding: 0px;

    }

}