* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::-moz-selection {
  background-color: inherit;
}
*::selection {
  background-color: inherit;
}

body {
  background: radial-gradient(#6292e9, rgb(28, 89, 201));
  font-family: "Ubuntu", sans-serif;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  transform: translateY(80px);
}
header .input {
  width: 300px;
  height: 55px;
  padding: 10px;
  display: flex;
  color: #444;
  outline: none;
  background: #e8e8e8;
  font-size: 22px;
  border: none;
  border-radius: 10px;
  transition: all 0.5s;
}
header .error {
  color: #ff3d3d;
  font-size: 28px;
  font-weight: bold;
  transition: all 1s;
  transform: translateY(-10px);
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 600px;
  margin: auto;
  flex-direction: column;
  background-color: #143f8f;
  transform: translateY(180px);
  border-radius: 60px;
  color: #ddd;
}
.container .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container img {
  width: 350px;
  height: 350px;
  transform: translateX(-60px);
  margin-left: 50px;
}
.container .city {
  font-size: 40px;
  transform: translateY(-30px);
}
.container .info-tab {
  font-size: 25px;
}
.container .info-tab > p {
  margin-bottom: 15px;
}
.container .temprature {
  font-size: 95px;
}

.loader {
  width: 250px;
  height: 250px;
  margin: auto;
  padding: 15px;
  display: flex;
  align-items: center;
  transform: translateY(330px);
  justify-content: center;
}
.loader .cloud {
  width: 250px;
}
.loader .front {
  padding-top: 45px;
  margin-left: 25px;
  display: inline;
  position: absolute;
  z-index: 11;
  animation: clouds 8s infinite;
  animation-timing-function: ease-in-out;
}
.loader .back {
  margin-top: -30px;
  margin-left: 150px;
  z-index: 12;
  animation: clouds 12s infinite;
  animation-timing-function: ease-in-out;
}
.loader .right-front {
  width: 45px;
  height: 45px;
  border-radius: 50% 50% 50% 0%;
  background-color: #4c9beb;
  display: inline-block;
  margin-left: -25px;
  z-index: 5;
}
.loader .left-front {
  width: 65px;
  height: 65px;
  border-radius: 50% 50% 0% 50%;
  background-color: #4c9beb;
  display: inline-block;
  z-index: 5;
}
.loader .right-back {
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 50% 0%;
  background-color: #4c9beb;
  display: inline-block;
  margin-left: -20px;
  z-index: 5;
}
.loader .left-back {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 0% 50%;
  background-color: #4c9beb;
  display: inline-block;
  z-index: 5;
}
.loader .sun {
  width: 200px;
  height: 200px;
  background: linear-gradient(to right, #fcbb04, #fffc00);
  border-radius: 50%;
  display: inline;
  position: absolute;
}
.loader .sunshine {
  animation: sunshines 2s infinite;
}
@keyframes sunshines {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes clouds {
  0% {
    transform: translateX(15px);
  }
  50% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(15px);
  }
}

.hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */