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

/* ///////////////// WEATHER WINDOW /////////////////// */

#weather-window {
/* variables */
    --search: rgba(71, 71, 71, 0.13);
    --search-focus: rgba(255, 255, 255, 0.39);
    --shadow: 7px 7px 15px rgba(0, 0, 0, 0.452);
    --small-shadow: 3px 3px 5px rgba(0, 0, 0, 0.178);

    background: url(media/weather/weather-rain.avif);
    background-size: cover;
    border-radius: 10px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    height: 560px;
    width: 430px;
}
.weather.base {
    width: 100%;
    height: 100%;
    color: white;
    text-shadow: var(--shadow);
    padding: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0);
}

/* header */
#weather-header {
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 30px;

}
#exit-weather {
    text-align: right;
    height: 20px;
    padding-right: 10px;
    cursor: pointer;
}

/* search bar */
.city-search {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    filter: drop-shadow(var(--shadow));
}
.city-search input {
    background: var(--search);
    color: rgb(255, 255, 255);
    padding: 0 20px;
    height: 33px;
    border-radius: 30px;
    width: 70%;
    margin-right: 10px;
    font-size: 20px;
}
.city-search input:active, 
.city-search input:hover {
    outline: 1px solid var(--search-focus);
}
.city-search input::placeholder {
    color: rgba(255, 255, 255, 0.815);
    font-size: 15px;
    letter-spacing: 2px;
}

/* search button */
.city-search button {
    height: 33px;
    width: 33px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--search);
}
.city-search button:hover {
    background: var(--search-focus);
}
.city-search button img {
    margin-top: 0;
    width: 18px;
    display: flex;
    justify-content: center;
}

/* main display */
.weather img{
    margin-top: 20px;
    width: 150px;
    filter: drop-shadow(var(--small-shadow));
}
.weather h1 {
    font-size: 70px;
    font-weight: lighter;
}
.weather h2 {
    font-size: 35px;
    font-weight: lighter;
}
.weather-description {
    margin-top: 10px;
}
.details {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 10px;
    margin-top: 40px;
}
.detail-column {
    display: flex;
    align-items: center;
    text-align: left;
}
.detail-column img {
    margin: 0 5px 0 0;
    height: 50px;
    width: 50px;
}
.humidity, .wind {
    font-size: 20px;
}

/* mini weather display */
#mini-weather-icon {
    background-size: cover;
    color: white;
    text-shadow: var(--small-shadow);
}
.mini-weather-display {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 70%;
}
.mini-weather-display img {
    width: 90px;
    filter: drop-shadow(var(--shadow));
}
#mini-city {
    margin-top: -15px;
    font-size: 30px;
    font-weight: lighter;
    text-align: center;
}
#mini-temp {
    font-size: 50px;
    font-weight: lighter;
}