body {
  background-image: url(../media/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.background-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.background-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(182, 205, 189, 0.5);
  z-index: 0;
  border-radius: 10px;
  margin-top: 10px;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  color: black;
  padding: 15px;
}

.clocks {
  margin-top: 30px;
}

h1 {
  font-weight: 600;
  color: black;
  padding: 20px;
  text-align: center;
}

.clocks h2 {
  font-weight: 500;
  font-size: 30px;
}

.clocks h3 {
  font-weight: 350;
  font-size: 20px;
}

.row {
  border-bottom: 1px dashed grey;
}

select {
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  width: 100%;
  border-radius: 5px;
  background-color: #5c715e;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

footer {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 20px;
}
footer a {
  text-decoration: none;
  border-bottom: 1px dotted black;
  color: black;
}
footer a:hover {
  opacity: 1;
}
