* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d0d, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0px 32px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);

    min-height: 200px;
    backdrop-filter: blur(5px);
}

.search-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.search-area input {
    width: 250px;
    padding: 12px 20px 12px 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.search-area input::placeholder {
    color: #fff;
    opacity: 1;
}

.search-area button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.search-area button:hover{
    scale: 1.1;
    background: rgba(255, 255, 255, 0.15);
}

button i {
    font-size: 15px;
    color: #fff;
}

.weather-area{
    display: flex;
    justify-content: center;
    align-items: center;
}

.weather-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 8px;
}

.weather-icon img{
    width: 200px;
    height: 200px;
}

#temp{
    margin-top: 0px;
    color: #fff;
    font-size: 2.5rem;
}

#city{
    color: #fff;
    font-size: 2.5rem;
}

.details{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    color: #fff;
    font-size: 1.5rem;
    gap: 50px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-item img {
  width: 40px;
  height: 40px;
}

.detail-item .text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

#value {
  font-weight: bold;
}

.label {
  font-size: 0.8rem;
  opacity: 0.8;
}