body {
    font-family: Arial, sans-serif; 
    text-align: center; 
    padding: 20px; 
    background: #121212;
    color: #e5e5e5;
}

h2 {
    color: white;
}

.sensori {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container { 
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;                                       
    width: 300px;
    height: 80px;
    margin-bottom: 13px; 
    padding: 20px; 
    /* border: 1px solid #ccc;  */
    border-radius: 10px;  
    background: #282828;
}

.container_weather { 
    /* position:relative; */
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    max-width: 400px;
    height: auto;
    background: #282828;
    padding: 28px 32px;
    /* overflow: hidden; */
    border-radius: 18px;
    transition: 0.6s ease-out;
}

.position{
    display: flex;
    gap: 10px;
    align-items: center;
}
.weather-box{
    text-align: center;
}

.weather-box img {
    width: 100px;
    height: 100px;
}

.weather-box .temperature{
    position: relative; 
    font-size: 48px;
}

.weather-details {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.temperature { 
    font-size: 24px; 
    font-weight: bold; 
    margin-top: 10px; 
}

.spia {
    width: 10px;
    height: 10px;
    background-color: #00ff15;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff15;
    animation: lampeggia 1s infinite alternate;
}

@keyframes lampeggia {
    0% { opacity: 1; box-shadow: 0 0 10px #00ff15; }
    100% { opacity: 0.3; box-shadow: 0 0 2px #00ff15; }
}
