@import url("https://fonts.googleapis.com/css?family=Montserrat");

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background: #fff;
  height: 100vh;
  overflow: hidden;
}

.day-card {
  width: 350px;
  height: 480px;
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.25); /* Reduced shadow opacity */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Increased border opacity */
  opacity: 1;
  text-align: center;
  cursor: default;
}

.day-card:hover {
  box-shadow: 0px 0px 12px rgba(155, 125, 224, 0.75);
  border: 1px solid rgba(127, 129, 255, 0.75);
}

.day-card .day {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9); /* Increased opacity for better visibility */
}

.day-card .image_container {
  position: absolute;
  top: 80px;
  left: 0px;
  right: 0px;
}

.day-card .image_container img {
  max-width: 100%;
  opacity: 1; /* Removed the opacity effect to make images fully visible */
}

.day-card .details {
  position: absolute;
  top: 330px;
  left: 0px;
  right: 0px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9); /* Increased opacity for better readability */
}

.day-card .topic {
  position: absolute;
  top: 40px;
  left: 0px;
  right: 0px;
  font-size: 18px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9); /* Increased opacity for better visibility */
}

.month {
  padding-top: 20px;
  width: 600px;
  height: 100px;
  text-align: center;
  cursor: default;
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7); /* Increased border opacity */
  opacity: 1; /* Set opacity to 1 for full visibility */
  color: white;
  border-radius: 15px;
  font-size: 35px;
}
