img{
    display: block;
}

p, a {
    font-size: 18px;
}

a {
    text-decoration: none;
    color: black;
}

h2{
    font-size: 48px;
}

main {
    padding: 50px 20px;
    text-align:center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 750px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}


main h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

#meteo-section-img {
    height: 318px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#meteo-section-img img {
    max-width: 100%; 
    height: auto;
}



#reponse {
    font-size: 1.7rem;
    font-weight: 500;
    max-width: 50vw;
    position: absolute;
    z-index: 999;
}

.ranger{
    display: flex;
    flex-direction: column;
    gap: 15px;
} 


.show {
    opacity: 1;
}

.night-mode {
    background-image: linear-gradient(to bottom, #202034, #1d1d30, #1a1b2b, #181827, #151623, #151623, #151623, #151623, #181827, #1a1b2b, #1d1d30, #202034);
    color: rgb(255, 255, 255);
}

h1 {
    color: rgb(189, 189, 189) !important; 
    font-size: 2.5rem; 
    margin-top: -20px;
}

.meteo-section {
    margin-top: 6rem;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    #reponse {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .meteo-section {
        margin-top: 0
    }

}