@import url('https://fonts.googleapis.com/css2?family=Baloo+Tammudu+2&display=swap');

* {
  font-family: 'Baloo Tammudu 2', cursive;
  position: relative;
}

video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

body {
  background-color: dodgerblue;
  background-image: url(./icons/unk.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  min-height: 425px;
  height: 100vh;
  margin: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  width: 90vw;
  max-width: 300px;
  background-color: #fff;

  display: block;
  margin: 2em auto;

  border-radius: 10px;
  padding-bottom: 50px;
}

.app-title {
  width: 300px;
  height: 50px;
  border-radius: 10px 10px 0 0;
}

.app-title p {
  text-align: center;
  padding: 15px;
  margin: 0 auto;
  font-size: 1.2em;
  color: #293251;
}

.notification {
  background-color: #f8d7da;
  display: none;
}

.notification p {
  color: #721c24;
  font-size: 1.2em;
  margin: 0;
  text-align: center;
  padding-top: 10px;
}

.weather-container {
  width: 100%;
  height: 260px;
  background-color: #fff;
}

.weather-icon {
  width: 300px;
  height: 128px;
}

.weather-icon img {
  display: block;
  min-height: 170px;
  max-height: 170px;
  margin: 0 auto;
}

.weather-icon img[src='icons/unknown.svg'] {
  margin-top: 1.5rem;
  min-height: 100px;
  max-height: 100px !important;
}

.temperature-value {
  width: 300px;
  height: 70px;
}

.temperature-value p {
  padding: 0;
  margin: 0;
  color: #293251;
  font-size: 4em;
  text-align: center;
  cursor: pointer;
}

.temperature-value p:hover {
}

.temperature-value span {
  color: #293251;
  font-size: 0.5em;
}

.temperature-description {
}

.temperature-description p {
  padding: 8px;
  margin: 0;
  color: #212121;
  text-align: center;
  font-size: 1.2em;
}

.location {
}

.location p {
  margin: 0;
  padding: 0;
  color: #212121;
  text-align: center;
  font-size: 0.8em;
}
