body {
margin:0;
padding: 0;
width: 100%;
height: 100vh;
  /*background-color:grey;*/
}
.banner {
  color:white;
  display:flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-size:cover;
  background-position: center center;
  height:100vh;
}
.banner-content {
  display:flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.clock-frame {
  display:flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-color: transparent;
  border-radius: 50%;
  width:400px;
  height:400px;
  border:19px solid #F75B67;
  padding:0;
  margin:0;
  z-index: 1;
  /*box-shadow: 2px 4px 4px #af4d53;*/
  box-shadow: 2px 4px 4px #202020;

}
.clock-interior {
  display:flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position:relative;
  border-radius: 50%;
  width:400px;
  height:400px;
  border:0;
  padding:0;
  margin:0;
  z-index: 2;
}
#time-number {
  position: absolute;
  top:15px;
  left:15px;
}
.hour{
  width:14px;
  height: 100px;
  /*z-index: 3;*/

}
.minute{
  width:10px;
  height: 170px;
  /*z-index: 4;*/

}
.second{
  width:5px;
  height: 170px;
  /*z-index: 5;*/
}

.pointer{
  background-color: #f9a9a9;
  transform-origin: 50% 0%;
  position:absolute;
  top:50%;
  left:50%;
  transition: 0.5s;
  border-radius: 5px;
  /*transform: rotate(1deg);*/
}
