/* SECOND CONTENT */

@media screen and (min-width:65em) {
    .second-content {
        flex-direction: row;
    }
    .snd-middle {
        border-inline: .2em solid rgb(230, 230, 220);
    }
}
@media screen and (max-width:65em) {
    .second-content {
        flex-direction: column;
    }
    .snd-middle {
        border-block: .2em solid rgb(230, 230, 220);
    }
}

.second-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em;

    background-color: #eeeeee;
    border-block: 2px solid white;
}

.snd-child {
    display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    width: 100%;
    height: 100%;
        min-height: 16rem;
    margin-inline: 24px;
    padding: 16px;

    font-size: 1.2rem;
    font-family: 'Adobe Clean';
    color: #161616;
    text-align: center;
}
.snd-child h3 {
    margin-bottom: 12px;
}
.snd-child p a:hover {
    text-decoration: none;
}
