:root {
  --base: #ffc600;
  --spacing: 10px;
  --blur: 10px;
}

body {
  text-align: center;
  background: #003e39;
  color: white;
  font-family: 'helvetica neue', sans-serif;
  font-weight: 100;
  font-size: 30px;
}
.hl {
  color: var(--base);
}
.controls {
  margin-bottom: 50px;
}

input {
  width: 100px;
}
.landscape {
  width: 800px;
}
img {
  padding: var(--spacing);
  background: var(--base);
  filter: blur(var(--blur));
}
.footer {
  width: 100%;
  height: 2rem;
  color: #003e39;
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--base);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}
