/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  body {
  background-image: url("quepoo2.png");
  background-repeat: repeat;
  @import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap')
  color: black;
  font-family: "Courier Prime", monospace;
  text-align: center;
  a:link {
    color: darkorange;
    background-color: transparent;
    text-decoration: none;
  }
  
  .wavy span {
  display: inline-block;
  font-size: 6rem; /* Adjust as needed */
  animation: wave 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
  transform: translateY(0);
  }
  
  @keyframes wave {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px); /* Adjust the height of the wave */
    }
  }

  a:visited {
    color: orange;
    background-color: transparent;
    text-decoration: none;
  }
  header {
    border-style: groove;
    background-color: white;
    box-shadow: 2px 2px gray;
    
  }
  
  footer {
    border-style: groove;
    background-color: white;
    margin-top: 2%;
    box-shadow: 2px 2px gray;
  }
  
  article {
    border-style: groove;
    background-color: white;
    display: inline-block;
    width: 475px;
    margin-top: 2%;
    box-shadow: 2px 2px gray;
  }
  
  body {
    border-style: groove;
    background-color: lightgray;
    width: 100px;
    margin-top: 5%
  }
}