* {
  box-sizing: border-box;
  font-family: 'Roboto Mono';
}

body {
  margin: 0;
  /* slate-900 */
  background: rgb(15 23 42);
  /* slate-100 */
  color: rgb(241 245 249);
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.time {
  max-width: 100%;
  text-align: center;
  white-space: wrap;
  overflow-wrap: break-word;
  font-size: 12rem;
}

.container input {
  /* slate-900 */
  background: rgb(15 23 42);
  /* slate-100 */
  color: rgb(241 245 249);
  /* slate-100 */
  border: 1px solid rgb(241 245 249);
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 3rem;
  text-align: center;
}

.container input:focus {
  outline: none;
  /* slate-100 */
  box-shadow: 0 0 0.5rem rgb(241 245 249);
}

.dropdown {
  position: fixed;
  display: inline-block;
}

.dropdown-symbol {
  font-size: 4rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  /* slate-700 */
  background: rgb(51 65 85);
  /* slate-100 */
  color: rgb(241 245 249);
  display: flex;
  font-size: 2.5rem;
  text-decoration: none;
  padding: 1.5rem;
}

.dropdown-content a:hover {
  /* slate-500 */
  background: rgb(100 116 139);
}