.weather-app-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.weather-card {
    color: white;
    padding: 0em;
    border-radius: 0px;
    width: 100%;
    max-width: 420px;
    margin: 0em;
}

.weather-card .search {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}

.weather-card button {
    margin: 0.5em;
    border-radius: 50%;
    border: none;
    height: 46px;
    width: 46px;
    outline: none;
    background: #7c7c7c2b;
    color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.weather-card button:hover {
    background: #7c7c7c6b;
    transform: scale(1.05);
}

.weather-card input.search-bar {
    border: none;
    outline: none;
    padding: 0.5em 1em;
    border-radius: 24px;
    background: #7c7c7c2b;
    color: white;
    font-family: inherit;
    font-size: 105%;
    width: calc(100% - 100px);
    transition: 0.2s ease-in-out;
}

.weather-card input.search-bar:focus {
    background: #7c7c7c4b;
}

.weather-card h1.temp {
    margin: 0;
    margin-bottom: 0.2em;
    font-size: 2.5rem;
    color: #fff;
}

.weather-card h2.city {
    margin: 0.5em 0;
}

.weather-card .flex {
    display: flex;
    align-items: center;
    margin: 0.2em 0;
}

.weather-card .icon {
    width: 60px;
    height: 60px;
}

.weather-card .description {
    text-transform: capitalize;
    margin-left: 10px;
    font-size: 10px;
    line-height: 1;
    text-align: left;
}

.weather-card .humidity, 
.weather-card .wind {
    margin: 0.5em 0;
}

.weather-error {
    color: #ff6b6b;
    margin-top: 1em;
    text-align: center;
    display: none;
}

.award{
    padding: 5px;
}
.awesome-txt,
.awesome-img{
    display: none;
}