Tell us what’s happening:
why am i not passing the test even tho all the things that are required are there
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Build an Event Flyer Page</title>
</head>
<body>
<header>
<img src="https://cdn.freecodecamp.org/curriculum/labs/event.jpg" alt="Event Poster">
<h1>Shoujo Blossom Festival 2025</h1>
</header>
<!-- Main Content -->
<main>
<!-- First Section -->
<section>
<h2>🌸 Magical Girl Cosplay Parade</h2>
<p>Join us as shoujo fans showcase their sparkle in a fun and colorful parade!</p>
</section>
<hr>
<!-- Second Section -->
<section>
<h2>✨ Voice Acting Workshop</h2>
<p>Learn from real anime voice artists and try out lines from your favorite shows!</p>
</section>
</main>
</body>
</html>
/* file: styles.css */
body {
padding-top: 50px;
padding-bottom: 50px;
margin-top: 0;
margin-bottom: 0;
margin-left: auto;
margin-right: auto;
width: 100vw;
min-height: calc(100vh - 100px)
}
hr {
width: 80%;
}
section {
width: 80%;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 Edg/138.0.0.0
Challenge Information:
Build an Event Flyer Page - Build an Event Flyer Page