
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}



.calendar {
  position: relative;
  width: 200px;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #000400);
}

.calendar #monthName {
  position: relative;
  padding: 5px 10px;
  background: #000000;
  color: #fff;
  font-size: 30px;
}

.calendar #dayName {
  margin: 10px 20px 8px 20px;
  font-size: 20px;
  font-weight: 300;
  color: #464646;
}

.calendar #dayNumber {
  margin: 0;
  line-height: 1em;
  font-size: 80px;
  font-weight: 700;
  color: #2c2c2c;
}

.calendar #year {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #999;
}



.clock{font-family:Arial,Helvetica,sans-serif;font-size:40px;margin: 4px 10px 4px 10px;font-size: 36px;font-weight:700;color: #464646;}


.clock span,.clock b{font-weight: 700;}


.footer {
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  z-index: 1;
  backdrop-filter: blur(5px);
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;

  position:fixed;z-index:99999;bottom:0px;font-weight:bold;
}
.footer__social {
  display: flex;
  align-items: center;
}
.footer__social img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  margin-left: 30px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.footer__social img:first-child {
  margin-left: 0px;
}
.footer__social img:hover {
  opacity: 1;
}
@media screen and (max-width: 799px) {
  .footer {
    flex-direction: column;
    height: 100px;
    padding: 20px 40px;
  }
}