body {
  margin: 0px;
}

main {
  margin-left: 20px;
  margin-right: 20px;
}

h1 {
  text-align: center;
}

.glow {
  font-size: 60px;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #e60073, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px #ff4da6, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6;
  }
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #e60073, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px #ff4da6, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6;
  }
}

.navbar ul {
  list-style-type: none;
  background-color: rgb(0,151,151);
  padding: 0;
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
}

.navbar a {
  color: rgb(255, 255, 255);
  padding: 15px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.navbar a:hover {
  background-color: rgb(76,182,182);
}

.navbar li {
  float: left;
}

.text-box:not(.calendar-box) {
  width: 300px;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 15px;
  margin: 10px;
  display: block;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 0, 149);
}

.text-box.calendar-box {
  width: 100%;
  max-width: 400px;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 15px;
  margin: 10px auto;
  display: block;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 0, 149);
}

.calendar-table {
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 10px;
  width: 350px;
  height: 280px;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.calendar-table th, 
.calendar-table td {
  width: 50px;
  height: 40px;
  border: 1px solid pink;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
  box-sizing: border-box;
  line-height: 40px;
  position: relative;
}

.calendar-table .padding {
  background: transparent;
}

.calendar-table th {
  background-color: rgb(0,151,151);
  font-weight: bold;
}

.calendar-table .today {
  background-color: #ff4da6 ;
  font-weight: bold;
  animation: glow 1s ease-in-out infinite alternate;
  color: #fff ;
  text-shadow: 0 0 5px #fff, 0 0 10px #e60073, 0 0 20px #e60073;
  border-radius: 50%;
}

.calendar-table .site-create {
  background-color: gold ;
  font-weight: bold;
  border: 3px solid orange ;
}

.calendar-table .log-entry {
  background-color: pink ;
  cursor: pointer;
}

.calendar-table .log-entry:hover {
  background-color: #ff69b4 ;
  transform: scale(1.1);
}

.calendar-table td:empty::after {
  content: '';
  display: block;
  height: 100%;
}

.calendar-table td:empty {
  background-color: transparent;
}
