@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Kumbh+Sans:wght@400;700&display=swap');

body {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: url('img/fundo-de-luzes-gradientes2.jpeg') 50% / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  width: 403px;
  height: 250px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 14, 28, 0.2) 99.99%, rgba(0, 0, 0, 0) 100%), #9a1ffb;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

h1 {
  position: relative;
  top: -60px;
  color: #e6c9fd;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 35px;

  background: linear-gradient(45deg, #ff00e5, #e513d0, #bb81f4, #ff00e5);
  background-size: 400% 100%;
  animation: animaH1 10s linear infinite alternate;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -ms-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes animaH1 {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position: 400%;
  }
}

.relogio-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

button {
  position: relative;
  margin: 20px;
  top: -50px;
  width: 67px;
  height: 29px;
  flex-shrink: 0;
  border: none;
  border-radius: 5px;
  background: #bb81f4;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #d3a8ff;
  transition: 0.5s;
}

.button.selected {
  background-color: #e513d0;
}

.relogio {
  color: #e6c9fd;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 50px;
}

.style-color {
  color: #e513d0;
}

@keyframes blinking {
  0%,
  100% {
    color: transparent;
  }
  50% {
    color: #e513d0;
  }
}

.style-color-blink {
  animation: blinking 1s linear infinite;
}

.milessegundos {
  font-size: 1rem;
  position: absolute;
}

@media (max-width: 667px) {
  .container {
    width: 350px;
    height: 200px;
  }
  button {
    top: -60px;
    margin: 10px;
    font-size: 14px;
  }
}
