* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    font-family: Arial, sans-serif;
    background-image: url('./The_Office_2_No_Flashlight.webp');
    background-position: no-repeat;
    line-height: 1.6;
    background-color: #333;
    color: white;
}

/* Navbar */
nav {
    background-color: #111;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* Seção Hero */
#home {
    background-size: cover;
     background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#home h1 {
    font-size: 60px;
    font-weight: bold;
}

#home p {
    font-size: 24px;
}

/* Seção de Personagens */
#characters {
    padding: 50px 20px;
    text-align: center;
    background-color: #222;
}

#characters h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.character-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.character {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

.character img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.character h3 {
    font-size: 24px;
    margin: 10px 0;
}

.character p {
    font-size: 16px;
    color: #ccc;
}

/* Seção Sobre */
#about {
    padding: 50px 20px;
    background-color: #333;
    text-align: center;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

footer p {
    margin: 0;
}