.content, body {
    text-align:center;
    position:absolute;
    width:100%;
    margin:0px;
}

body {
    background-color:blue
}


h1 {
    font-weight: bold;
    font-size: 40px;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.skyColor, .sky {
    background-color: lightblue;
}

.sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 450px;
    z-index: 0;
}

p {
    font-weight:bold;
    color:white;
    font-size:20px;
}

a {
    color:black;
}

a.foodLink {
    color: black;
    background-color: white;
    border-radius: 25px;
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    border: 3px solid black;
}

img.duck {
  animation-name: wobble;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@keyframes wobble {
  from {transform: rotate(0deg);}
  to {transform: rotate(8deg);}
}