body {
    margin: 0;
    padding: 0;
    color: white;
    background-color: rgb(3, 18, 63);
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: large;
}

header {
    margin-top: -1%;
    background-color: antiquewhite;
    background-image: url("../img/abstractFace.jpg");
    height: 95vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

article {
    background: rgba(13, 32, 58, 0.5);
    padding: 1%;
    border-radius: 3%;
    margin: 6% 0 0;
    display: inline-block;
}

.getGrid {
    background-image: url("../img/abstractBird.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#getGrid {
    margin-top: 1%;
}

div img {
    transform: rotateZ(180deg);
}

button {
    background: rgba(13, 32, 58, 0.5);
    border: none;
    color: white;
    margin: 3%;
    padding: 4%;
    width: 94%;
}

nav {
    background: rgba(13, 32, 58, 0.5);
}

nav ul {
    text-align: right;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin: 1%;
    padding: 1%;
    background: rgba(114, 167, 236, 0.5);
    border-radius: 5;    
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: larger;
}

@media only screen and (max-width: 600px) {
   nav ul li {
        display: block;
        font-size: small;
        text-align: left;
        margin: 1% 0;
    }
}