 body {
            font-family: 'Comic Sans MS', cursive, sans-serif;
           background:linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            color: #333;
            margin: 0;
            padding: 20px;
        }
        header {
            text-align: center;
            background-color: #FFFFFF; 
            padding: 20px;
            border-radius: 15px;
            border: 4px solid #FFFFFF;
        }
        h1 { color: #006400; }
        .character-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        .character-card {
            background-color: white;
            border: 3px solid #FFFFFF;
            border-radius: 10px;
            width: 250px;
            padding: 15px;
            text-align: center;
            transition: transform 0.2s;
        }
        .character-card:hover {
            transform: scale(1.05);
            background-color: #f0fff0;
        }
        .character-card h2 {
            color: #FF4500;
            margin-top: 0;
        }
        .character-card p {
            font-size: 0.9em;
            line-height: 1.4;
        }
        footer {
            text-align: center;
            margin-top: 50px;
            font-size: 0.8em;
            color: #006400;
        }
		
		h1 {
  color: white;
  text-shadow: 2px 2px 4px #000000;
}

img {
  float: left;
  clip-path: ellipse(40% 50%);
  shape-outside: ellipse(45% 50%);
}

p {
  word-wrap: break-word;
}

#img1 {
  filter: contrast(150%);
}