/* Google fonts import link */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');


section{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #F0F8FF; */
  padding: 0 20px;
}

section .cajaReloj{
  font-family: 'Orbitron', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  max-width: 560px;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  position: relative;
}

section .cajaReloj .icons i{
  position: absolute;
  right: 17px;
  top: 17px;
  height: 30px;
  width: 30px;
  background: #24292D;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

.cajaReloj .icons i.fa-sun{
  opacity: 0;
  pointer-events: none;
}

section .cajaReloj .time{
  display: flex;
  align-items: center;
}
.cajaReloj .time .time-colon{
  display: flex;
  align-items: center;
  position: relative;
}
.time .time-colon .am_pm{
  position: absolute;
  top: 0;
  right: -60px;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1px;
}

.time .time-colon .time-text{
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  /* background: #F0F8FF; */
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.time .time-colon .time-text,
.time .time-colon .colon{
  font-size: 50px;
  font-weight: 600;
}

.time .time-colon .colon{
  font-size: 40px;
  margin: 0 10px;
}
.time .time-colon .time-text .text{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

