body {
    height: 100vh;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    background: #222;
    background-image: url('/WeatherApp/emmanuel-appiah-d4xr5jN5f3g-unsplash.jpg');
    background-size: cover;
}

.main-heading {
    text-align: center;
    font-size: 35px;
    color: #CDE6F5;
    letter-spacing: 2px;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    padding: 2em;
    backdrop-filter: blur(100px);
    color: white;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    margin: 1em;
}
.search{
    display: flex;
    align-items: center;
    justify-content: center;
}
button {
    margin: 0.5em;
    border-radius: 50%;
    border: none;
    height: 46px;
    width: 46px;
    outline: none;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

input.search-bar {
    border: none;
    outline: none;
    padding: 0.5em 1em;
    background: #7c7c7c3b;
    border-radius: 20px;
    color: white;
    font-family: inherit;
    font-size: 120%;
    width: calc(100% - 100px);
}

button:hover {
    background: #7c7c7c6b;
}
.description {
    text-transform: capitalize;
}
.weather.loading{
    visibility: hidden;
    max-height: 20px;
    position: relative;
}
.weather.loading::after{
    visibility: visible;
    content: "Loading...";
    color: white;
    position: absolute;
    top: 0;
    left: 10px;
}
