body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  color: #333;
}

nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover {
  color: #5a3e8a; /* Purple for Lent */
}

h1 {
  text-align: center;
  color: #333;
  margin: 20px 0;
}

.week-container, .content {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.week-container h2, .content h2 {
  color: #5a3e8a; /* Purple for Lent */
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}

.week-container p, .content p {
  margin: 10px 0;
  line-height: 1.6;
}

.week-container strong, .content strong {
  color: #4a4a4a;
}

.share-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #5a3e8a; /* Purple for Lent */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.share-btn:hover {
  background-color: #48306e;
}

.tracker {
  text-align: center;
  margin: 20px 0;
}

.tracker h2 {
  color: #333;
  margin-bottom: 10px;
}

.calendar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.calendar div {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  font-size: 14px;
}


.viewed {
  background-color: #4caf50;
  color: white;
}

.past {
  background-color: #ff4d4d;
  color: white;
}

.current {
  background-color: #2196f3;
  color: white;
  animation: pulse 2s infinite;
}

.future {
  background-color: #e0e0e0;
  color: #666;
}

.contact {
  text-align: center;
  margin-top: 30px;
  color: #333;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  color: #666;
  font-size: 0.9em;
}

footer a {
  color: #5a3e8a;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    padding: 15px;
  }
  .calendar div {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .share-btn {
    width: 100%;
  }
}

/* video container */
.vid-container {
  max-width: 514px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.vid-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
} 
.vid-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

  #ytFrame::-webkit-scrollbar {
    display: none;
  }
