#moon-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.phase-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

#moon-svg {
  width: 120px; 
  height: 120px;
  flex-shrink: 0; 
}

.moon-background {
  fill: #444; 
}

.moon-light {
  fill: #ddd;
  transition: d 0.5s ease-in-out;
}

.phase-info {
  display: flex;
  flex-direction: column; 
  text-align: left;

#phase-name {
  color: black;
  font-size: 18px;
  font-family: sans-serif;
}

#phase-percent {
  color: #666;
  font-size: 14px;
  font-family: sans-serif;
}
