* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("img/photo-1485470733090-0aae1788d5af.jpeg");
    background-size: cover;
}

.box {
    background: rgba(0, 0, 0, 0.692);
    opacity: 0.8;
    border-radius: 25px;
    padding: 20px;
    width: 95%;
    max-width: 450px;
}

.box-medium {
    margin-top: 30px;
}

.input-city {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 25px;
    font-size: 20px;
    background-color: #7c7c7c2b;
    color: white;
    width: calc(100% - 100px);
}

.btn-search {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 50px;
    border: 50px;
    cursor: pointer;
    background-color: #7c7c7c2b;
    float: right;
}

.icon-search {
    width: 20px;
}

.city {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
}

.temp {
    font-size: 20px;
    color: #fff;
    margin-top: 25px;
}

.box-small {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.text-weather {
    color: #fff;
    font-size: 15px;
    margin-left: 20px;
    text-transform: capitalize;
}

.humidity {
    color: #fff;
    font-size: 15px;
    margin-top: 15px;

}

