@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

p{
    /*background-color: aqua;*/
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.ColorVerde{
    /*background-color: #ECEE81;*/
    background-color: #87BAC3;
}
.ColorRojo{
    /*background-color: #8DDFCB;*/
    background-color: #344372;
}
.ColorAzulMate{
    background-color: #344372;
}
.ColorAzul{
    /*background-color: #82A0D8;*/
    background-color: #53629E;
}
.ColorPurpura{
    background-color: #473472;
}

.ColorNeonA{
    background-color: #00FF9C;
}
.ColorNeonB{
    background-color: #D2FF72;
}


.Espacio{
    width: 90%;
    height: auto;
    margin: auto;
    margin-bottom: 5px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    font-family: "Roboto Condensed", sans-serif;
}


.Up{
    /*background-color: antiquewhite;*/
    width: 45%;
    height: auto;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}



.Nombre{
    font-size: 60px;
    text-align: left;
    
}
.EspacioPromedio{
    /*background-color: #00FF9C;*/
    text-align: left;
    width: 90px;
}


.Label{
    font-size: 10px;
    margin-bottom: 2px;
}
.Numero{
    font-size: 35px;
    margin-top: 2px;
}
.Temperaturas{
    /*background-color: #00FF9C;*/
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.Temp{
    margin-left: 5px;
    margin-right: 5px;
}

.Promedio{
    font-size: 45px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.EstadoActivo{
    width: 50px; /* Ajusta al tamaño del GIF */
    height: 50px; /* Debe ser igual al ancho para que sea un círculo perfecto */
    border-radius: 50%; /* Hace que el div sea redondo */
    overflow: hidden; /* Oculta cualquier contenido que sobresalga del borde redondo */
    display: flex; /* Opcional, para centrar el contenido */
    align-items: center; /* Opcional, centra verticalmente */
    justify-content: center;
}

.BotonEntrar {
    width: 50px;
    transition: transform 0.3s ease; /* Añadido para suavizar la animación */
}

.BotonEntrar:hover {
    transform: scale(1.5); /* Se usa 'transform' para la escala */
}


@media (max-width: 500px) {
    .Espacio{
        flex-direction: column;
        width: 99%;
    }

    .Up{
        width: 100%;
        height: auto;
        display:flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    .Temperaturas{
        width: 90%;
        justify-content: space-around;
    }
    .Numero{
        font-size: 30px;
    }
    .Nombre{
        font-size: 35px;
    }
    .Promedio{
        font-size: 45px;
    }
}