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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("https://azurweb.fr/img/azurweb.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    text-align: center;
    padding: 0 1rem;
    max-width: 62rem;
}

.icon {
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
h2, h3 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

p {
    font-size: clamp(1.125rem, 4vw, 1.2rem);
    font-weight: 300;
}
a {
    color: #fff;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}

@media (max-width: 640px) {
    .content {
        padding: 0 1rem;
    }
}