body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url("/Img/nuit.png") no-repeat center center fixed;
    background-size: cover;
}

.h1LP {
    color:#fff;
}

.pFooter {
    color:white;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #96a3f1;
}

.article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.article img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.article-info {
    flex-grow: 1;
    margin-left: 20px;
    text-align: left;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.button:hover {
    background: #0056b3;
}

@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding: 5vw 2vw;
  }
  .article {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .article img {
    width: 80vw;
    max-width: 200px;
    margin-bottom: 10px;
  }
  .buttons {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
  }
}
