* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
:root {
  --white: #ffffff;
  --off-white: #e5e5e5;
  --transp-white-1: rgba(255, 255, 255, 0.25);
  --transp-white-2: rgba(255, 255, 255, 0.1);
  --blue-1: #62b8f5;
  --blue-2: #4475ef;
  --shadow: rgba(3, 46, 87, 0.2);
}

body {
  height: 720px;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
}
.wrapper {
  font-size: 16px;
  width: 1080px; 
  max-width: 448px; 
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}  

.container {
  width: 100%;
  backdrop-filter: blur(10px);
  padding: 48px 28.8px; 
  border-radius: 9.6px; 
  text-align: center;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  height: 208px; 
  width: 208px; 
  right: -104px; 
  top: 28.8px; 
}

.shape-2 {
  height: 176px; 
  width: 176px; 
  bottom: -59.2px; 
  left: -40px;
}

.search-container {
  font-size: 16px;
  display: grid;
  grid-template-columns: 9fr 3fr;
  gap: 20px; 
}

.search-container input,
.search-container button {
  outline: none;
  font-size: 16px; 
  border: none;
}

.search-container input {
  padding: 11.2px; 
  background-color: transparent;
  border-bottom: 2px solid var(--transp-white-1);
  color: var(--white);
  font-weight: 300;
}

.search-container input::placeholder {
  color: var(--off-white);
}

.search-container input:focus {
  border-color: var(--white);
}

.search-container button {
  color: var(--blue-2);
  background-color: var(--white);
  border-radius: 4.8px;
}

#result h2 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2.88px; 
  font-weight: 600;
  margin: 20px 0; 
}

.weather,
.desc {
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 2px; 
  font-size: 14.4px; 
  font-weight: 500;
  line-height: 32px; 
}

.weather {
  margin-top: -11.2px; 
}

#result img {
  margin: 9.6px 0 0 0; 
  width: 158.4px; 
  filter: drop-shadow(0 28.8px 59.2px var(--shadow)); 
}

#result h1 {
  font-size: 64px; 
  margin: 19.2px 0 28.8px 0; 
  line-height: 0;
  font-weight: 400;
  color: var(--white);
}

.temp-container {
  display: flex;
  justify-content: center;
}

.temp-container div {
  padding: 4.8px 16px; 
}

.temp-container div:first-child {
  border-right: 1px solid var(--transp-white-1);
}

.temp-container .title {
  font-weight: 600;
  color: var(--white);
}

.temp-container .temp {
  font-weight: 300;
  color: var(--off-white);
}

.msg {
  margin-top: 28.8px; 
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px; 
}

@media screen and (max-width: 450px) {
  .wrapper {
    font-size: 14px;
  }
}
