body {
    font-family: Arial, sans-serif;
    background-color: #0a3d62; /* Bleu marine */
    color: #fff; /* Couleur du texte */
    margin: 0;
    text-align: center;
}

header {
    padding: 20px;
    background-color: #1e5f85; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Ajoute une ombre pour donner un effet 3D. */
    border-bottom: 2px solid red;
}

.update {
    color: red;
}

h1 {
    font-size: 2em;
    margin: 0;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px;
    padding: 0 10px;
}

.weather-info {
    background-color: #1e5f85;
    padding: 20px; /* Ajoute de l’espace autour du contenu de l’en-tête. */
    border-radius: 50px; /* Normalement c'est 10px */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.weather-info h2 {
    color: #ffd700;
    font-size: 1.5em;
}

.weather-info p {
    font-size: 1.2em;
    margin: 0;
    color: #fff;
}

.credit {
    font-size: 0.8em;
}