@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-image: url("https://source.unsplash.com/1900x1080/?landscape");

}

.big-box {
    background-color: #000000;
    width: 95%;
    max-width: 350px;
    opacity: 0.8;
    padding: 20px;
    border-radius: 25px;
}


input {
    border: none;
    outline: none;
    font-weight: 600;
    padding: 10px;
    border-radius: 25px;
    font-size: 20px;
    color: #ffffff;
    background-color: #7c7c7c2b;
    width: calc(100% - 50px);
    text-align: center;
}



button {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 50px;
    background-color: #7c7c7c2b;
    float: right;
    cursor: pointer;

}

button:hover {
    background-color: #7c7c7c6b;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: white;
   
}


.second-box {
    margin-top: 30px;
    margin-left: 20px;
}

.third-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
}



.degree {
    color: #ffffff;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
}

.weather-icon {
    margin-right: 5px;
    margin-left: -5px;

}

.description {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.humidity {
    margin-top: 20px;
    color: white;

}