.container{
	width: 400px;
  height: 440px;
  display:grid;
  align-items:center;
  margin: auto;
  margin-top: 100px;
  grid-template-rows: 1fr 1fr 1fr;
  flex-direction:column;
  grid-gap: 7.5% 0%;
 
}

.box{
  border-radius: 106px;
  display:flex;
  height: 100%;
  flex-direction: space-between;
	align-items:center;
  background: #456789;
	box-shadow: 0px 4px 10px;
}

.eclipse{
  margin-left:17px;
  height:120px;
  width:120px;
  border-radius: 106px;
  display:flex;
  flex-direction: space-between;
	align-items:center;
  background: #FFBFBF;
	box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#box3 .eclipse{
  background: #BFD9FF;
	box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.box .eclipse img{
  margin : auto;
}

.bigText, #time{
  font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 50px;
	line-height: 84px;
	text-align: center;
	margin: 0px;
	color: #000000;
}

.smallText, #date{
  font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 10px;
	line-height: 19px;
	margin: 0px;
	color: #000000;
}

.innerText ul{
  display:grid;
 	text-align:right;
  grid-template-rows: 60% 40%;
  grid-gap: 0% 0%;
  list-style:none;
}

#box1 .innerText{
  margin:auto;
}

#box1 .innerText ul{
  padding:0px;
}

body {
    background: linear-gradient(-45deg,  #ff00ff, #ff0000, #ffff00, #00ff00);
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
