body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  /* Optional: keeps the page background transparent so the rounded box is the only thing seen */
  background-color: #191919; 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#weekCounter {
  /* Using the exact color and rounding logic from your snippet */
  background-color: #0b5354;
  border-radius: 0.5rem; /* This is the standard 'rounded-lg' size */
  
  /* Makes the box fill the embed area */
  width: 100%;
  height: 100%;
  
  /* Centering the text inside the box */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Your text styling */
  font-family: "Times New Roman", Times, serif;
  font-size: 56px;
  color: #a1cec5; 
}
