/* 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." */

<!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta charset="UTF-8">
  <title>Meu Site Rosa 2000s ✨</title>
  <style>
    body {
      background: url("https://i.ibb.co/3F8mJj0/pink-glitter-bg.gif");
      font-family: "Comic Sans MS", cursive, sans-serif;
      color: #ffccff;
      text-align: center;
      margin: 0;
      padding: 0;
    }

    h1 {
      color: #ff66cc;
      text-shadow: 2px 2px #ff99ff;
      font-size: 3em;
      margin-top: 30px;
    }

    .box {
      background: rgba(255, 192, 203, 0.8);
      border: 3px dotted #ff66cc;
      padding: 20px;
      margin: 30px auto;
      width: 70%;
      border-radius: 15px;
    }

    a {
      color: #ff99ff;
      text-decoration: none;
      font-weight: bold;
    }

    a:hover {
      color: #ff00cc;
      text-decoration: underline wavy;
    }

    .blink {
      animation: blink 1s step-start infinite;
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    .marquee {
      background: #ffccff;
      color: #ff00aa;
      padding: 10px;
      margin-top: 20px;
      font-size: 1.2em;
      font-weight: bold;
    }
  </style>
</html>