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

a {
  text-decoration: none;
}

li {
  list-style: none;
}

input:focus {
  outline: none;
}

body .container {
  margin: 0;
  overflow: hidden;
  background: #1e1e1e;
  font-family: "PT Sans", serif;
  width: 100%;
  height: 100vh;
  background-image: url("images/winter.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
body .container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
body .container .logoImg {
  position: absolute;
  top: 5%;
  left: 5%;
  transform: translate(20%, 20%);
}
body .container .weatherWrappper {
  position: absolute;
  bottom: 20%;
  left: 10%;
  transform: translate(20%, 20%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
}
body .container .weatherWrappper .weatherWrappper_degree {
  font-size: 120px;
}
body .container .weatherWrappper .weatherWrappper_center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .container .weatherWrappper .weatherWrappper_center .weatherWrappper_center_city {
  font-size: 60px;
}
body .container .weatherWrappper .weatherWrappper_center .weatherWrappper_center_date {
  font-size: 20px;
  font-weight: 100;
}
body .container .weatherWrappper .weatherWrappper_icon {
  width: 100px;
  height: 100px;
}
body .container .weatherInfo {
  position: absolute;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: white;
  width: 30%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 60px;
  right: 5%;
  top: 5%;
  border-radius: 20px;
  gap: 40px;
}
body .container .weatherInfo .warning {
  position: absolute;
  top: 16%;
  transform: translate(0, 0);
  color: red;
  font-size: 20px;
}
body .container .weatherInfo .form {
  width: 100%;
  padding-bottom: 10px;
  position: relative;
}
body .container .weatherInfo .form .searchInput {
  width: 100%;
  padding: 10px 10px 15px 10px;
  background: transparent;
  border: none;
  border-bottom: 3px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}
body .container .weatherInfo .form .searchInput::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
body .container .weatherInfo .form .searchInput::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
body .container .weatherInfo .form .form_icon {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translate(10%, -70%);
  font-size: 24px;
}
body .container .weatherInfo .weatherInfo_details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.14);
}
body .container .weatherInfo .weatherInfo_details .weatherInfo_details_title {
  font-size: 18px;
}
body .container .weatherInfo .weatherInfo_details .weatherInfo_details_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
body .container .weatherInfo .weatherInfo_details .weatherInfo_details_list .weatherInfo_details_listDetails {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .container .weatherInfo .weatherInfo_details .weatherInfo_details_list .weatherInfo_details_listDetails .weatherInfo_details_listDetails_name {
  font-size: 20px;
}
body .container .weatherInfo .weatherInfo_details .weatherInfo_details_list .weatherInfo_details_listDetails .weatherInfo_details_listDetails_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
}/*# sourceMappingURL=style.css.map */