/**** Reset ****/

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

/**** Style général de la page ****/

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #fffffe;
    overflow-x: hidden;
}

header,
footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 25px;
    font-style: italic;
    text-transform: uppercase;
    padding: 20px 15px;
}

.main__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.img__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

img {
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: #d3d3d3;
    width: 300px;
    height: 300px;
    transition: transform 0.4s ease-in-out;
}

img:hover {
    transform: scale(1.03);
}

.btn {
    background-color: #5947cc;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    width: 300px;
}

.btn:hover {
    opacity: 0.8;
}

footer {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
}