@font-face {
    font-family: 'Neue Montreal';
    src: url('https://cdn.jsdelivr.net/npm/@fontsource/neuemontreal@5.0.18/files/neuemontreal-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Neue Montreal', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

header {
    background-color: transparent;
    color: #333;
    padding: 2rem 0;
    text-align: center;
    width: 100%;
    position: static;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

main {
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

article {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

article img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

article p {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

h2, h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #333;
    color: #fff;
    width: 100%;
    position: static;
    margin-top: 2rem;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

footer a:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    main {
        padding: 10px;
    }
    
    article {
        padding: 20px;
    }
    
    article img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    article img {
        margin-bottom: 1rem;
    }
}
