body {
    background-image: url('https://images.unsplash.com/photo-1587923623987-c7e4083beb23?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTR8fHN1bnxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
}

#container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    background-image: linear-gradient(rgba(223, 200, 200, 0.3), rgba(0, 0 , 0, 0.6));
    min-height: 100vh;
}

#text {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#input {
    background-color: rgba(142, 127 , 161, 0.3);
    border-radius: 20px;
    border: 3px solid #cdf3a2;
    padding: 15px;
    font-size: 20px;
}

#input:focus {
    background-color: #fff;
}

#cityDate {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#city {
    color: #fff;
    font-size: 45px;
}

#date {
    color: #fff;
    font-size: 24px;
}

#temperature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#tempNow {
    color: #fff;
    font-size: 110px;
    font-weight: bold;
    margin: 0;
    text-shadow: 5px 10px black;
}

#feelsLike {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
}

#condition {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    font-style: italic;
}

#difference {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}

.test img {
    width: 70px;
    height: 70px;
}