/* This is the style sheet for the things that remain the same in all of the webpages */
body {
    display: grid;
    grid-template-rows: 0.5fr 4fr 0.5fr;
    background-image: url("../Images/AdobeStock_836259040.jpeg");
    background-size: 100% 100%;
    background-attachment: fixed;
}

header {
    display: inline-block;
    width: 1fr;
    margin: 10px;
    padding: 10px;
    grid-row: 1/2;
}

.logo {
    width: 200px;
    height: 200px;
}

nav {
    display: inline;
    background-color: black;
    width: 325px;
    height: 25px;
    text-align: center;
    vertical-align: middle;
    line-height: 25px;
    position: absolute;
    right: 10px;
    margin-right: 10px;
    word-spacing: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

a:link, a:visited {
    color: white;
    text-decoration: none;
}

footer {
    align-content: end;
    align-items: end;
    margin-top: 20px;
    color: paleturquoise;
    background-color: steelblue;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: bold;
    display: grid;
    grid-row: 3/4;
    opacity: 80%;
}

