* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
}

h1 {
    font-size: 26px;
    text-transform: uppercase;
    margin-left: 20px;
}

header .contact {
    text-align: right;
    margin-right: 20px;
}

header .contact p {
    margin: 5px 0;
}

.navbar {
    background-color: #444;
    padding: 15px 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    display: inline-block;
    font-weight: bold;
}

.navbar a:hover {
    background-color: #555;
}

section {
    padding: 50px 20px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

section p {
    max-width: 800px;
    margin: 15px auto;
    line-height: 1.6;
    animation: slideIn 2s ease-in-out;
}

section img {
    width: 40%;
    margin: 20px auto;
    display: block;
    animation: zoomIn 1.5s ease-in-out;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Styles responsives */
@media (max-width: 768px) {
    header, .navbar, footer {
        text-align: center;
    }

    header .contact {
        text-align: center;
    }

    header .contact p {
        margin-bottom: 5px;
    }

    section img {
        width: 80%;
    }
}
