/* DevonDelaney.com stylesheet */
* {
    box-sizing: border-box;
}

h1 {
    font-family: 'Zeyada', cursive;
    font-size: 12vw;
}

h2, h3, h4, h5, h6 {
    font-family: 'Handlee', cursive;
    font-size: 6vw;
}

p {
    font-family: 'Helvetica', sans-serif;
    font-size: 4vw;
}

figure {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    border: 1px;
    box-shadow: 2px 2px 1px grey;
}

.clear {
    clear:both;
}

@media only screen and (min-width:800px) {
    h1 { font-size: 16vw; }
    
    section figure {
        float: left;
        width: 45%;
    }
    
    section h2 {
        float: left;
        margin: 1vw 2vw;
    }
    
    section p {
        float: left;
        font-size: 2vw;
        width: 45%;
        margin: 1vw 2vw;
    }
}