body {
    font-family: sans-serif;
  }
  
  header {
    background-color: #cecece;
    color: #fff;
    padding: 20px;
  }
  
  h1 {
    font-size: 2em;
  }
  
  main {
    width: 80%;
    margin: 0 auto;
  }
  
  img {
    height: 50%;
  }
  
  p {
    margin-bottom: 10px;
  }
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  .animated-buttons {
    margin-top: 20px;
  }
  
  .button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  .button:hover {
    background-color: #fff;
    color: #000;
  }
  
  footer {
    text-align: center;
  }