#clock-container{
  width: 256px;
  height: 256px;
  position: relative;
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}
.clock{
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-3px);
}
.hand{
  position: absolute;
  top: 50%;
  right: 50%;
  background-color: #53666e;
}
.second-hand{
  position: absolute;
  width: 2px;
  height: 110px;
  top: calc(50% - 30px);
  right: calc(50% - 1px);
  transform-origin: calc(0% + 1px) calc(0% + 30px)
}

.minute-hand{
  position: absolute;
  width: 4px;
  height: 80px;
  right: calc(50% - 2px);
  transform-origin: calc(0% + 2px) 0%
}

.hour-hand{
  position: absolute;
  width: 4px;
  height: 60px;
  right: calc(50% - 2px);
  transform-origin: calc(0% + 2px) 0%
}

.clock img{
  width: 50%;
  position: absolute;
  top: 50%;
  transform-origin: 100%;
  transform: rotate(90deg);
}
#nob{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: 1000;
}


#calendar-container{
  width: 256px;
  height: 270px;
  position: relative;
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}
#month-year{
  position: absolute;
  top: 15%;
  right: 0%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.5em;
}
#date{
  position: absolute;
  top: 20%;
  right: 0%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 10em;
}
#day{
  position: absolute;
  top: 80%;
  right: 0%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.5em;
}

.my-button-outer{
  width: 244px;
  border: 1px solid black;
  border-radius: 7px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 1px white inset, 0 0 1px white inset, 0 0 5px black;
  padding: 5px;
}
#my-button-inner{
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 0 0 1px white, 0 0 1px white;
  overflow: auto;
  mix-blend-mode: screen;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
}