/* basic layout */
body {
    font-family: "chaparral-pro", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14pt;
    color: #15141a;
    background: #038;
    background-image: url("meric-dagli-7NBO76G5JsE-unsplash.jpg");
    background-size: cover;
}
main {
    background: #e9f2f2;
    background: radial-gradient(circle, #e9ffffef 0%, #c4c7cfef 100%);
    padding: 1% 5%;
    margin: auto;
}
a {
    color: #090979;
    text-decoration: none;
}
img {
    margin: 20px;
    max-width: 100%;
}

header {
    background: #038d;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

footer {
    text-align: center;
}

/* style part of the style sheet */

h1,
h2,
hr {
    color: #090979;
    font-family: "the-seasons-light", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 20px 0px;
}

header h1,
header {
    color: #e9f2f2;
}

.img-border {
    border: #fff 10px solid;
}

button {
    background: azure;
    background-repeat: repeat;
    padding: 5px;
    border-radius: 10px;
}

/* utils
 * remember when I said I'm about a decade behind?
 * I have a sneaking suspicion that I should be using flexbox
 * instead I did float and breakpoints.
 */
@media (min-width: 1200px) {
    .desktop-float-l {
        float: left;
    }
    .desktop-float-r {
        float: right;
    }
    .shadow-l {
        box-shadow:
            -5px 5px 25px -15px #000,
            inset 0px 0px 10px #000;
    }
    .shadow-r {
        box-shadow:
            5px 5px 25px -15px #000,
            inset 0px 0px 10px #000;
    }
    main {
        max-width: 80%;
        min-height: 550px;
        margin-top: 50px;
    }
}
@media (max-width: 1199px) {
    .desktop-float-l,
    .desktop-float-r {
        display: block;
        margin: auto;
    }
}
.clearfix {
    clear: both;
}
