@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  background-color: #222;
  font-family: "Audiowide", cursive;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
/* Clock */
p {
  text-shadow: 0 0 20px #34ebd8;
  color: #34ebd8;
  font-size: 9em;
  display: inline-block;
}
/* Days */
h1 {
  color: rgba(255, 255, 255, 0.1);
  font-size: 2.2rem;
}

#days {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 6rem;
  padding-bottom: 3rem;
  text-transform: uppercase;
}

.day {
  padding-left: 2rem;
}

button {
  display: inline-block;
  font-size: 2rem;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 1rem;
  transition: all 0.2s ease-in-out;
}

.currentDay {
  display: inline-block !important;
  letter-spacing: 1rem;
}

/* Smaller display */
@media (min-width: 1401px) {
  .day {
    padding-left: 0.5rem;
    font-size: 2.2rem;
  }

  p {
    font-size: 4rem;
  }
}

/* Tablet display */

@media (max-width: 1400px) {
  .day {
    display: none;
    font-size: 5rem;
  }
}

#go-back{
  cursor: pointer;
  position:fixed;
  bottom: 10%;
  left: 1%;
  z-index: 100;
  border: none;
  height: 60px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content:center;
  align-items:center;
  border-radius: 50%;
  font-size: 1.5em;
  background-color: rgb(59,185,155);
  color: #282c34;
}