*{
  font-family: 'Roboto', sans-serif;
  padding: o;
  margin: 0;
  box-sizing: border-box;
  }
  body {
    width: 100%;
    height: 100%;
    position: relative;
  }
  img.body {
    width: 100%;
    height: 100%;
    position: absolute;
    image-rendering: auto;
    z-index: -1;
  }
  header {
    color: rgb(223, 20, 155);
    display: inline-block;
    position: relative;
    width: 100%;
    height: 15%;
  }
  
  header h1 {
    display: inline;
    font-size: 8vh;
    font-family: cursive;
    text-shadow: 0 0 10px #FFFFFF, 11px 9px 6px #1C6EA4; 
   }
  img.logo {
    float: right;
    height: 80%;
    width: 20%
  }
  main {
    height: 100%;
    width: 100%;
    display: block;
  }
  section {
    display: block;
  }
  #wrapper {
    width: 50%;
    height: 100%;
    float: right;
  }
  ul {
    color: rgb(0, 217, 255);
    list-style: none;
    display: flex;
    flex-direction: column;
    float: right
  }
  li {
    float: right;
  }
  a {
    color: navy;
  }
  a:visited {
    color: navy;
    padding: 15px;
  }
  article {
    position: fixed;
    bottom: 0;
    height: 35%;
    border: 4px solid royalblue;
    background: rgba(255, 250, 250, 0.726);
    overflow: scroll;
    color: fuchsia;
    box-shadow:0 0 20px navy;
  }
  p.quote {
    color: fuchsia;
    font-weight: 900;
  }
  p {
    color: navy;
    text-indent: 10px;
  }
@media(min-width: 766px) {
  ul {
    font-size: 2vh;
  }
}
@media(min-width: 1000px) {
  header {
    height: 20%;
  }
  img {
    widows: 10%;
  }
  p {
    font-size: 2vh;
  }
  li {
    margin-top: 10px;
  }
  img.body {
    image-resolution: 300dpi; 
  }
}