@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

.EspacioCabecera {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 10px;
}

.LogoDole, .LogoServicam {
    width: 100px;
    height: auto;
    max-width: 100%;
}

.InfoActualizacion {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.Derechos {
    text-align: center;
}

.TextoSmall {
    font-size: 12px;
    margin: 0;
}

.Update {
    font-size: 14px;
    margin: 0;
}

.Temps {
    background-color: rgb(28, 109, 82);
    margin-top: 70px;
    margin-bottom:70px;
    margin-left: 120px;
    margin-right: 120px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    color: aliceblue;
    
}

.fila2{
    font-size:60px ;
    font-weight: bold;
    color: aliceblue;
    margin: auto;
    display: flex;
    align-items: center;
    width: 300px;
}

@media screen and (max-width: 768px) {
    .EspacioCabecera {
        flex-direction: column;
        align-items: center;
    }

    .LogoDole, .LogoServicam {
        width: 80px;
    }

    .TextoSmall, .Update {
        font-size: 12px;
    }
}

.EspacioCamara {
    background-color: cadetblue;
    width: 95%;
    margin: 20px auto;
    border-radius: 15px;
    padding: 15px;
    color: white;
}

h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.columnas {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    font-size: 15px;
}

.columna {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 200px;
    max-width: 300px;
    margin-right: 100px;
}

.fila {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Label {
    font-weight: bold;
    width: 50%;
    margin: 0;
}

.Numero {
    color: yellow;
    margin: 0;
    width: 50%;
    text-align: right;
}


@media screen and (max-width: 768px) {
    .EspacioCabecera {
        flex-direction: row;
        align-items: center;
        align-items: center;
        justify-content: space-between;
    }

    .Derechos {
        margin-top: 10px;
        width: 30%;
       
    }
    .LogoDole{
        width: 35%;

    }

    h1 {
        font-size: 24px;
    }

    .Label, .Numero {
        font-size: 14px;
    }
}