body {
  font-family: 'Press Start 2P', cursive;
  background-color: #fdfd96;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

.app-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.box {
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 8px 8px 0 #000000;
  padding: 20px;
  margin-bottom: 40px;
  background-color: white;
}

.app-header {
  background-color: #ffb3ba;
}

h1 {
  margin: 0 0 10px 0;
}

.tagline {
  margin: 0;
  font-size: 13.5px;
}

.selection {
  background-color: #bae1ff;
}

.selection label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
}

#city-select {
  font-family: 'Press Start 2P', cursive;
  width: 100%;
  padding: 15px;
  font-size: 15px;
  border: 4px solid #000000;
  border-radius: 8px;
  background-color: white;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

#city-select:focus {
  outline: none;
  box-shadow: 0 0 0 #000000;
}

#city-select option {
  background-color: white;
}

.hidden {
  visibility: hidden;
}

#clock-grid {
  display: grid;
  gap: 26px;
}

.clock-card {
  background-color: #baffc9;
}

.clock-card:nth-child(2) {
  background-color: #ffdfba;
}

.clock-card:nth-child(3) {
  background-color: #d7baff;
}

.city-name {
  font-size: 28px;
  margin-bottom: 15px;
}

.time-display {
  font-size: 56px;
  padding: 15px 10px;
  border: 4px solid #000000;
  border-radius: 8px;
  background-color: white;
}

.date-display {
  font-size: 0.8rem;
  margin-top: 15px;
  opacity: 0.8;
}

.app-footer {
  font-size: 10px;
}

a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #76a180;
  transition: all 0.2s ease-in-out;
}