body {
    background-color: lightgoldenrodyellow;
    background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/173/549/original/anime_pink_background_landscape.jpg?1757539155"); /* path to your image */
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-position: center; 
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

header {
padding-top: 30px;
}

main {
    padding-right: 40px;
}


.weather-app {
    background: #9C55AD;
    max-width: 600px;
    margin: 45px auto;
    padding: 40px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 10px
    ;
}


.search-form-input {
    background: lightpink;
    border: none;
    border-radius: 6px;
    padding: 15px;
    font-size: large;
    font-family:cursive;
}

.search-form-button {
    background: whitesmoke;
    border: none;
    border-radius: 6px;
    padding: 15px;
    font-size: medium;
    font-family: cursive;
}

.weather-app-data {
    display: flex;
    justify-content: space-between;

}

.weather-app-city {
    margin-top: 40px;
    font-size: 50px;
    line-height: 20px;
}

.weather-app-details {
    font-size: 20px;
    line-height: 30px;
}

.weather-app-details strong {
    color: #FFFFFF;
}

.weather-app-temperature-container {
    display: flex;
}

.weather-app-temperature {
    font-size: 70px;
}

.weather-app-icon {
    width: 80px;      
    height: auto;
    display: inline-block;
}

.weather-app-unit {
    font-size: 40px;
}

.weather-forecast {
    display: flex;
    justify-content: space-around;
}

.weather-forecast-date {
    text-align:center;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

.weather-forecast-icon {
    font-size: 38px;
    text-align: center;
}

.weather-forecast-temperatures {
   text-align: center;
   color: #FFFFFF;
   display: flex;
   justify-content: center;
   margin-top: 10px;
}

.weather-forecast-temperature {
    padding: 0 4px;
}

footer {
    text-align:center;
    padding-top: 30px;
    padding-bottom: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

