body {
    padding: 0;
    margin: 0;
    font-family: 'Cascadia Code', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    /*background image from unsplash*/
    background-image: url(https://source.unsplash.com/1600x900/?landscape);
    background-attachment: fixed;
    background-size: cover;
}

.card {
     z-index: 100;
    color: white;
    padding: 2em;
    max-height: 320px;
    max-width: 350px;
    width: 50vw;
    height: 70vh;
    
    border-radius: 25px;
    text-shadow: 1px 1px 5px rgb(0, 0, 0);
    overflow: hidden;

    /**/
    border: solid 1px rgba(255, 255, 255, 0.20);
    box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.30);
    background: inherit;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

}

.search {
    display: flex;
    justify-content: left;
    margin-bottom: 2em;

}

.search-bar {
    color: white;
    border: none;
    outline: none;
    padding: 0.4em 1em;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.20);
    font-size: 105%;
    width: calc(50%);
    font-family: inherit;
    text-shadow: 1px 1px 5px rgb(0, 0, 0);
}

.search-bar::placeholder {
    text-shadow: 1px 1px 5px rgb(0, 0, 0);
    color: white;
    font-size: 105%;
    font-family: inherit;
}

button {
    margin-left: 1em;
    border: none;
    padding: 1em;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    outline: none;
    background-color: rgba(0, 0, 0, 0.20);
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.50);
}

.description-container {
    display: flex;
    align-items: center;
}

.humidity {
    margin-top: 1em;
    font-size: 80%;
}

.wind {
    margin-top: 0.4em;
    margin-bottom: 1em;
    font-size: 80%;
}

.archis {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.30);
    background: inherit;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

}

.archis-text {
    color: rgba(255, 255, 255, 0.500);
    text-decoration: none;
    text-shadow: 1px 1px 5px rgb(0, 0, 0);
    font-size: 70%;
    transition: 0.5s;
}
.archis-text:hover{
    color: white;
    font-size: 75%;
}
