body {
  background-image: url('../images/grass1.jpeg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
    min-height: 100vh;
    max-width: 800px;
    background-color: papayawhip; 
    margin: 0 auto;
}
.MainBody {
  width: 800px;
  padding-top:10px;
  box-sizing: border-box;
}
/* unvisited link */
a:link {
  color: #d5ff80;
}

/* visited link */
a:visited {
   color: #00ff55;
}

/* mouse over link */
a:hover {
  color: white;
}

/* selected link */
a:active {
  color: yellow;
}
.container {
        position: relative;
        text-align: center;
        color: white;
    }
    /* Position text at specific corners */
    .bottom-left { position: absolute; bottom: 8px; left: 16px; }
    .top-left { position: absolute; top: 8px; left: 16px; }
    .top-right { position: absolute; top: 8px; right: 16px; }
    .bottom-right { position: absolute; bottom: 8px; right: 16px; }
    .centered { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
