body {
  font-family: Tektur, sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  text-align: center;
  background: url(pictures/Capy2.jpg) no-repeat center/cover fixed;
  margin: 0; height: 100vh;
  text-shadow:
  1px -1px 0 #000,
  1px -1px 0 #000,
  1px 1px 0 #000,
  1px 1px 0 #000;  
}

#title {
    font-size: 5rem;
}

hr {
    border: 1px solid white;
    width: 50%;
}

.container {
  z-index: 1;
  position: relative;
  padding: 2rem;
}

#counter {
  font-size: 180px;
  margin: -30px auto;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.6);
}

input, button {
  font-size: 1rem;
  padding: 0.5rem;
  text-transform: uppercase;
}

button {
  cursor: pointer;
  background-color: #85008b;
  color: white;
  border: none;
}

button:hover {
  background-color: #8645a0;
}

#cuteImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; height: 100vh;
  object-fit: contain;
  background-color: rgba(0,0,0,0.85);
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 9999;
}

body.showing-image::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}