body {
  /* Add styles here! */
  /* Add styles here! External CSS (in its own file)*/
  color: darkblue;
  background-image: url(download.gif); /*gif background*/
  background-size: cover; /*makes the entire background take up the entire space, even when opening it in a smaller view*/
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* makes height the full view*/
  margin: 0;
  font-family: Courier;

}


.artcontainer {
  max-width: 800px;
  width: 85%;
  padding: 30px;
  border-radius: 10px;
  background-color: #abc4ed;
  border: 20px #334a9c ridge;
}
