/* Global Styles */
:root {
    --shadow: 0 1px 10px rgba(104,104,104,0.8);
}
* {
    box-sizing: border-box;
}
*::before, *::after {
    box-sizing: inherit;
}
html {
    font-size: 100%;
}
body {
    max-width: 1200px;
    margin: 0 auto;
    background-color: blue;
}

.item {
    /* center the contents of the grid items. Make each grid item a Flex Container */
    display: flex;
    /* horizontal and vertical centering */
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-family: Arial, Helvetica, sans-serif;
}
.container {
    display: grid;
    grid-template-areas: 1fr;
    grid-template-areas: 
        "topMenu"
        "header"
        "hero"
        "menu"
        "bottomMenu"
        "footer";
    grid-gap: .3rem;
}
li {
    list-style: none;
}
li a {
    margin: 20px;
}
.topMenu {
    background-color:lightblue;
    text-align: center;
}
header h3 {
    color: wheat;
    text-align: center;
}
.hero img {
    width: 100%;
}
.boxes {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 30px;
}
.box {
    text-align: center;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    background-color: lightblue;
}
.box img {
    max-width: 300px;
    box-shadow: var(--shadow);

}
h3, p {
    color: white;
    text-align: center;
}
.bottomMenu {
    background-color: lightblue;
    text-align: center;
    padding: 2px;
}
footer {
    color: white;
    font-size: .8rem;
}
