* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('./Fnaf1-Office.webp');
    background-position: no-repeat;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
    padding: 20px;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
}

header .logo h1 {
    font-size: 36px;
}

nav ul {
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

nav ul li a:hover {
    color: #e60000;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

section p {
    font-size: 18px;
    margin-bottom: 20px;
}

section img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    display: block;
    border-radius: 8px;
}

footer {
    text-align: center;
    background: #333;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
}

footer p {
    font-size: 14px;
}

#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;
}