.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
  }
   
body {
    font-family: "Pacifio", cursive;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
header {
    padding: 20px;
    background-color: #fadcdc;
    text-align: center;
}

header h1 {
    font-style: italic;
    color: rgba(223, 59, 237, 0.756);
}
.container{
    padding: 20px;
    text-align: center;
    color: #f4c0c0;
}

.grid-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 300px); /* 3 colonnes avec largeur fixe */
    grid-template-rows: repeat(3, 300px);   /* 3 lignes avec hauteur fixe */
    gap: 10px; /* Espacement entre les boîtes */
    padding: 10px;
    border-radius: 10px;
    justify-content: center;
}

/* Style des items */
.grid-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Les images remplissent les boîtes sans déformation */
}

img:hover{
    opacity: 0.8;
    cursor: pointer;
}