/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #ff0000;
    padding: 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 5px;
    color: white;
}

/* Navigation Bar */
nav {
    background-color: #003366;
    display: flex;
    justify-content: center;
    padding: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 20px;
    transition: 0.3s;
}

nav a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 500px;
    text-align: center;
    padding-top: 150px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 4em;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
}

/* Characters Section */
.characters {
    display: flex;
    justify-content: space-around;
    margin: 40px 20px;
    flex-wrap: wrap;
}

.character {
    background-color: #444444;
    width: 30%;
    margin: 20px;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.character:hover {
    transform: scale(1.05);
}

.character img {
    width: 80%;
    max-width: 200px;
    border-radius: 8px;
}

.character h2 {
    color: #ffcc00;
    font-size: 2em;
    margin-top: 10px;
}

.character p {
    font-size: 1.1em;
    margin-top: 10px;
}

/* Footer Section */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
