* {
  box-sizing: border-box;
  -webkit-transition: background 1s ease-in;
  transition: background 1s ease-in;
}
.card {
  overflow: hidden;
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  height:  1400px;
  width: 800px;
  border-style: solid;
  border-width: 10px;
  border-color: white;
  background: #00AEEF;
  border-radius: 50px;
}
iframe { display: none; }
body{
  background-color: transparent;
  font-family: 'Luengo-Bold', sans-serif;
}
#currtime {
  font-family: 'Luengo-Bold';
  color: #fff;
  text-align: right;
  font-size: 100pt;
  margin-right: 25px;
  line-height: 1.4;
}
#currtime span {
  display: inline-block;
  font-family: 'luengolight';
  font-weight: 100;
  font-size: 100pt;
  position: relative;
  top: -.5vw;
}
.text-alignment {
  margin-top: 70px;
  text-align: center;
}

/*Analog Clock CSS*/
#clock {
  position: absolute;
  top: 575px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 400px;
  margin: auto;
  border-radius: 100%;
  background: white;
/*   box-shadow: inset 0 5px #3a3e4e, 0 0 0 5px #8087a1, 0 0 0 15px #2f3340, 0 10px 0 20px rgba(0, 0, 0, 0.3); */
}
#clock:before, #clock:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
}
#clock:before {
  width: 50px;
  height: 50px;
  background: #8087a1;
}
#clock:after {
  width: 30px;
  height: 30px;
  background: #caccd7;
}
#clock .digit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 100%;
  margin: auto;
}
#clock .digit:nth-child(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
#clock .digit:nth-child(2) {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
#clock .digit:nth-child(3) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#clock .digit:nth-child(4) {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
}
#clock .digit:nth-child(5) {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
}
#clock .digit:nth-child(6) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#clock .digit:before, #clock .digit:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  margin: 20px 0;
  border-radius: 100%;
  background: #8087a1;
}
#clock .digit:before {
  top: 0;
}
#clock .digit:after {
  bottom: 0;
}
#clock .digit:nth-child(3):before, #clock .digit:nth-child(3):after, #clock .digit:nth-child(6):before, #clock .digit:nth-child(6):after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
#clock .bighand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  margin: auto;
}
#clock .bighand:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  background: #2f3340;
}
#clock .lilhand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  margin: auto;
}
#clock .lilhand:before {
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  background: #242731;
}
#clock .sechand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  margin: auto;
}
#clock .sechand:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 100%;
  height: 150px;
  background: #e57513;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none;           /* non-prefixed version, currently
                                  not supported by any browser */
}
