@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #161623;
  overflow: hidden;
}
section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  transform: translate(-250px, -120px);
  border-radius: 50%;
  background: linear-gradient(#ffc107, #e91e63);
}
section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  transform: translate(250px, 150px);
  border-radius: 50%;
  background: linear-gradient(#2196f3, #31ff38);
}

.box {
  position: relative;
  z-index: 10;
}
.back {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 30px 80px;
  text-decoration: none;
  font-size: 24px;
  display: flex;
  align-items: center;
  color: white;
}
.back ion-icon {
  height: 32px;
  width: 32px;
  margin-right: 10px;
}
@media only screen and (max-width: 1000px) {
    .back{
        padding: 20px 40px;
    }
}

.container {
  position: relative;
  width: 350px;
  min-height: 350px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(25px);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#dycalendar {
  width: 100%;
  padding: 20px;
  color: white;
}
#dycalendar table {
  width: 100%;
  margin-top: 40px;
}
#dycalendar table tr:first-child td {
  border: 1px solid white;
  border-radius: 4px;
  font-weight: 600;
}
#dycalendar table td {
  padding: 10px;
  cursor: pointer;
}
#dycalendar table td:hover {
  background-color: black;
}
