* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
   background-image: url('./FNaF3_Office.webp');
    background-position: no-repeat;
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
}

header .logo img {
    width: 150px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav ul li a:hover {
    color: #f39c12;
}

section {
    padding: 40px;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

section p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.galeria {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.galeria img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.galeria img:hover {
    transform: scale(1.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

#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;
}