* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    letter-spacing: 0.4px;
    text-transform: capitalize;
}
.background {
    position: absolute;
    inset: 0;
    background: url('assets/bg.webp') no-repeat center/cover;
    z-index: -1;
}
.content {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}
.weatherBox {
    width: 320px;
    height: 510px;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.15), rgba(16, 60, 52, 0.2));
}
.weather-input {
    display: flex;
    border-radius: 20px;
    background-color: rgba(208, 205, 205, 0.484);
    animation: fade 0.3s ease-in-out;
}

.weather-input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 0 12px 16px;
    border-radius: 20px;
}
.weather-input input::placeholder {
    color: white;
}
.search-button {
    background: transparent;
    border: none;
    font-size: 16px;
    margin: 0 15px 0 6px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
.search-button:active {
    transform: scale(0.9);
}
.place-date,
.degree-box img,
.celsius-box,
.humidity,
.wind-speed,
.Error-section {
    animation: fade 0.3s ease-in-out;
}
@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}
.place-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 50px;
    margin-top: 20px;
}
.degree-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.degree-box img {
    width: 150px;
}
.celsius-box {
    text-align: center;
}
.analyse-box {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    line-height: 20px;
}
.material-symbols-outlined{
    font-size: 30px;
    vertical-align: middle;
}
.analyse-box .text {
    margin-left: 10px;
}
.humidity,
.wind-speed {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.Error-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
}
.Error-section img {
    width: 250px;
}
.Error-section h1 {
    margin: 20px 0 12px;
}