body {
      background: url('https://kaiserskittles.neocities.org/1554d0525aedd988ae25e6b9d7ee3777.gif'); /* sparkly bg */
      font-family: "Comic Sans MS", cursive, sans-serif;
      color: #ff99cc;
      text-align: center;
      margin: 0;
      padding: 0;
    }

    header {
      background: #ff66b2;
      padding: 20px;
      border-bottom: 5px dotted #fff;
    }

    header h1 {
      font-size: 40px;
      color: #fff;
      text-shadow: 2px 2px #ff3399;
    }

    nav {
      background: #ffccff;
      padding: 10px;
      border-bottom: 3px solid #ff66b2;
    }

    nav a {
      color: #ff33cc;
      text-decoration: none;
      font-weight: bold;
      margin: 0 10px;
    }

    .container {
      display: flex;
      justify-content: center;
      margin: 20px;
    }

    .sidebar {
      width: 200px;
      background: #fff0f6;
      border: 3px solid #ff99cc;
      padding: 10px;
      margin-right: 20px;
      border-radius: 10px;
    }

    .content {
      flex: 1;
      background: #fff0fa;
      border: 3px solid #ff99cc;
      padding: 20px;
      border-radius: 10px;
    }

    footer {
      background: #ff66b2;
      color: white;
      padding: 10px;
      margin-top: 20px;
      font-size: 14px;
    }

    img {
      max-width: 100%;
    }