body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: #000;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background-color: #ff4500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #d63200;
}

.naruto-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.character {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.character img {
    max-width: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gallery-item {
    width: calc(33.33% - 10px);
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 5px;
}
