#s3{
    clear:both;
    width:95%;
    margin: 30px auto;
    border-radius:10px;
    display:flex;
    flex-direction:column-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
#s3 .container{
   flex: 1 1 300px;
}
#s3 .container p{
    font-size: 2em;
    margin: 0 0 0 5vw;
    color:rgba(0,0,0,100%);
}
#s3 .container img{
    width:100%;
}
#s3 .container span{
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
}
#s3 .highlighted {
    background-color: #14cc45;
    font-family: 'Oswald', sans-serif;
    margin: 10px 0 0 5vw;
    padding: 16px 80px;
    width:fit-content;
    font-size: 2em;
}
#s3 .highlighted:hover{
    background-color: #CC141A;
    color: white;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #s3{
        flex-direction:row;
        flex-wrap: nowrap;
    }
    #s3 .container span{
        font-size: 1.2em;
    }
    #s3 .highlighted {
        font-size: 1.5em;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    #s3 .container span{
        font-size: 1.5em;
    }
    #s3 .highlighted {
        font-size: 1.5em;
    }
}