body{
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    color: white;
    background-color: #343434;
}
.container{
    width: 300px;
}
.card{
    border-radius: 50px;
    background-color: #343434;
    box-shadow: 5px 10px 10px #191b1b, -5px -5px 10px #595959;
    padding: 3%;
    text-align: center;
    color: white;
    padding: 20px;
    display: block;
    align-items: center;
}
.card h4{
    font-size: 4rem;
    font-weight: 400;
    margin: 1rem 0;
}
img{
    width: 20%;
    align-items: center;
}
h6 #weather{
    text-transform: capitalize;
}
button{
    display: block;
    width: 100px;
    height: 100px;
    margin: 10px auto;
    background-color: transparent;
    border: 0;
    color: #9c9c9c;
    font-size: 30px;
    border-radius: 50px;
    box-shadow: 10px 5px 10px #252525, 5px 5px 18px #4a4a4a;
}
button:hover{
    box-shadow: inset 10px 5px 10px #252525, 5px 5px 18px #4a4a4a;
}