* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos globais */
body {
    font-family: Arial, sans-serif;
    background-color: #1d1d1d;
    color: #f0f0f0;
    line-height: 1.6;
    margin: 0;
}

/* Header */
header {
    background-color: #0f0f0f;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    color: #ffcc00;
}

header nav ul {
    list-style-type: none;
    margin-top: 10px;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #f0f0f0;
    font-size: 1.2rem;
}

header nav ul li a:hover {
    color: #ffcc00;
}

/* Seções */
section {
    padding: 30px 10%;
}

h2 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

ul {
    list-style-type: square;
}

ul li {
    margin-bottom: 10px;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
}

.image-gallery img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    background-color: #0f0f0f;
    color: #ffcc00;
    padding: 15px;
    margin-top: 30px;
}

#home {
    background-image: url('Fnaf4.webp');
    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;
}