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

body {
    font-family: 'Titillium Web', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
}

nav {
    max-width: 960px;
    margin: 0 auto;
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    padding: 18px;
    font-family: 'Titillium Web', sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
}

nav ul li a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

main {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Changed from center to flex-start */
    flex-direction: column; /* Ensure main content stacks in a column on small screens */
    background-image: url(../Images/fond.png);
    background-repeat: no-repeat;
    background-size: cover;
}



footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.ft {
    text-align: center;
    flex: 1;
}

.ft:first-child{
    margin-bottom: 10px;
}

.ft:last-child{
    margin-top: 10px;
}

.icone {
    width: 30px;
    height: 30px;
}

address a {
    color: #fff;
}

@media (min-width: 550px) {
    footer {
        flex-direction: row;
    }

    .ft:first-child{
        margin-bottom: 0;
    }

    .ft:last-child{
        margin-top: 0;
    }
}
