body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #eafaf1;
    color: black;
}
.weather-app{
    background-color: white;
    padding: 10px;
    border-radius:  30px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 90%;
    text-align: center

}
h1{
    color: #0056b3;
    font-size: 50px;
    margin-bottom: 45px;
}

.or-separator{
    color: #888;
    font-weight: 700;
    margin: 10px 0;
}

.location-selection, .search-city{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;

}
.location-selection label, .search-city label{
    font-weight: 700;
    margin-right: 10px; /*Separa eleeentos en caso que esten en misma linea*/
}
#state-select, #city-input{
    padding: 5px 10px 5px 10px;
    border:1.2px solid black;
    font-size: 14px;
    flex-grow: 1;
    max-width: 250px;
    margin-right: 5px
}
#search-by-state-button, #search-city-btn{
    padding: 4px;
    border:none;
    border-radius: 30px;
    background-color: #0056b3;
    color:white;
    font-weight: 400;
    cursor: pointer;
    transition: background-color  0.2s ease-in-out; /*Transición del botón
    depende un hover*/

}
#search-by-state-button:hover, #search-city-btn:hover{ /*Hover mencioado */
    background-color: white;
    color: black;
    border:1.2px solid black;


}
.data-weather-in-city-main{
    margin-top:30px;
    border-top: 1px solid black;
    padding-top: 15px;

}

#city-name{
    font-size: 28px;
    color: #333;
    margin-bottom: 5px;
}

#valor-grades-temp{
    font-size: 30px;
    font-weight: bold;

}

.fotter{
    display: block;
    background-color: #2ecc71;
    font-weight: 800;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden; 
    padding-bottom: 5px; 
}

.fotter hr{
    border: none; 
    border-top: 1px solid black; 
    margin: 0; 
    width: 100%;
    margin-left: auto; 
    margin-right: auto; 
    padding-bottom: 5px; 
}
p#weather-description-status{
    font-size: 20px;
    color: grey;
    margin-top: 10px;
}

img#image-w-status{
 
    width: 80px;
    height: 80px;
    display: block; /* Cambia a block aquí */
    margin: 10px auto; /* Centra horizontalmente */
    
}

