/* Stylesheet for AEM Creations, LLC 'Under Construction' placeholder webpage. Created 09/15/20 by Amy Schuetz*/

* {
    margin: 0;
    padding: 0;
    color: black !important;
}

body {
    background: #eae6dd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

header {
    color: black;
    text-align: center;
}

header img {
    max-height: 100px;
    margin-top: 15px;
    margin-bottom: 15px;
}

p {
    color: black;
    text-align: center;
    margin-top: .5em;
    /*if client doesn't want to provide alternative contact details, use the next line*/
    display: block;
}

h1 {
    font-family: "Young Serif", sans-serif;
    text-align: center;
    font-weight: 400;
    font-size: 1.25em;
}

main,
header img,
footer img {
    border: 5px solid #edd286;
    box-sizing: border-box;
}

main {
    width: 100%;
    background: #aaa;
    border-left: none;
    border-right: none;
}

section {
    background: white;
}

h2 {
    text-align: center;
    font-family: sans-serif;
    font-size: 2em;
    font-weight: 600;
    padding: .75em 0;
    margin: 0;
}

.main-image {
    display: block;
    /*    display: flex;*/
    width: auto;
    max-height: 150px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1.25em;
}

main::before,
main::after {
    content: '';
    display: grid;
    background-image: url(images/repeating-construction-background.png);
    background-repeat: repeat-x;
    height: 60px;
    width: 100%;
}

footer {
    width: 100%;
    text-align: center;
}

footer img {
    margin-top: 15px;
    margin-bottom: 15px;
    max-height: 75px;
}

h3 {
    color: white;
    font-family: sans-serif;
    font-weight: 200;
    font-variant-caps: all-small-caps;
    text-align: center;
    font-size: 1em;
}

@media screen and (max-width: 600px) {
    header {
        padding-left: 0;
        padding-right: 0;
        margin-left: 1em;
        margin-right: 1em;
    }

    .main-image {
        display: flex;
        width: 100%;
    }
}