body {
    background: url('espaco.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: #222;
    margin: 0;
    padding: 0;
  }
  
  header {
    text-align: center;
    padding: 40px 10px 20px;
    color: white;
    text-shadow: 2px 2px 5px #ffb3e6;
  }
  
  h1 {
    font-size: 2.8em;
    animation: arcoiris 6s linear infinite;
    display: inline-block;
    margin: 0;
  }
  
  @keyframes arcoiris {
    0% { color: #ff4da6; }
    20% { color: #ff9933; }
    40% { color: #ffff66; }
    60% { color: #66ff99; }
    80% { color: #66b3ff; }
    100% { color: #ff4da6; }
  }
  
  @keyframes onda {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  header p {
    font-size: 1.1em;
    margin-top: 10px;
    color: #ffe6f7;
    text-shadow: 1px 1px #000;
  }
  
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px;
  }
  
  .post {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 3px solid #ff66b3;
    width: 90%;
    max-width: 600px;
    text-align: left;
    padding: 10px;
    box-shadow: 4px 4px #ff99cc;
    transition: transform 0.2s ease-in-out;
  }
  
  .post:hover {
    transform: scale(1.03);
  }
  
  .post img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #ff66b3;
    margin-right: 15px;
  }
  
  .info h2 {
    color: #003399;
    margin: 0 0 5px;
    font-size: 1.2em;
  }
  
  .meta {
    color: #0055cc;
    font-size: 0.9em;
    margin-bottom: 8px;
  }
  
  .ler {
    display: inline-block;
    background: #ffb3e6;
    color: white;
    padding: 6px 12px;
    border: 2px solid #ff66b3;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
  }
  
  .ler:hover {
    background: #ff66b3;
  }
  
  footer {
    text-align: center;
    color: #fff;
    font-size: 0.9em;
    padding: 30px;
    text-shadow: 1px 1px #000;
  }