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

* {
    margin: 0;
    padding: 0;
}

body {
    background: black;
}

header {
    color: white;
    padding: 3em;
    margin-top: 8%
}

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

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

main {
    width: 100%;
}

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 {
    position: fixed;
    width: 100%;
    background: black;
    text-align: center;
    bottom: 0%;
}

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%;
    }
}