.form {
  display: none;
}

.greetings {
  display: none;
  color: whitesmoke;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
  font-weight: bolder;
}

.showing {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bgImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: fadeln 0.5s linear;
}

.js-clock {
  color: white;
  font-size: 100px;

  width: 300px;

  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.js-clock > h1 {
  margin-bottom: auto;
}

.js-date {
  color: whitesmoke;
  font-size: 35px;
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 90px;
}

.js-weather {
  color: whitesmoke;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
}

.box-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  justify-content: space-around;
  width: 300px;
  position: absolute;
  left: 900px;
  top: 680px;
  font-family: "Nunito", sans-serif;
  font-weight: bolder;
}

#btn {
  all: unset;
  position: relative;
  box-sizing: content-box;
  padding: 0 6px;
  border: 0.5px solid transparent;
  border-radius: 4px;
  color: whitesmoke;
  font-size: 20px;
  font-family: "Nunito", sans-serif;
}
#btn:hover {
  border: 1px solid #cfd3ce;
  background-color: #cfd3ce;
  text-align: center;

  opacity: 0.4;
}
