@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

body {
    background-color: #f9f7fe;
    font-family: 'Roboto', sans-serif;
}

a {
    color: #885df1;
}

.weather-app {
    background: white;
    max-width: 100%;
    margin: 6% 2%;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 2%;
    padding: 4% 5%;
}

header {
    border-bottom: 1px solid #f9f7fe;
    padding: 0 0 2% 0;
}

.search-form-input {
    background-color: #f9f7fe;
    border: none;
    border-radius: 6px;
    width: 60%;
    font-size: 130%;
    font-weight: bolder;
    padding: 2% 5%;
}

.search-form-button {
    background: #885df1;
    padding: 2% 4%;
    border: none;
    font-size: 120%;
    margin-left: 2%;
    border-radius: 6px;
    color: white;
}

main {
    padding: 10% 4%;
}

.weather-app-data {
    display: flex;
    justify-content: flex-start;
}

.weather-app-city {
    margin: 0;
    font-size: 250%;
    line-height: 100%;
}

.weather-app-detail {
    font-size: 100%;
    color: rgba(39, 33, 66, 0.4);
    font-weight: bold;
}

.weather-app-detail-strong {
    color: #f65282;
}

.weather-app-temperature-container {
    max-width: 60%;
    display: flex;
}

.weather-app-icon {
    max-width: 300%;
    opacity: 70%;
}

.weather-app-temperature {
    font-size: 350%;
    font-weight: bold;
}

.weather-app-unit {
    margin-top: 6%;
    font-size: 150%;
}

.weather-forecast {
    display: flex;
    justify-content: flex-start;
    margin-top: 2%;
}

.weather-forecast-date {
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 90%;
    line-height: 30%;
    margin-bottom: 2%;
}

.weather-forecast-icon {
    width: 100%;
    height: 70%;
    display: block;
    margin: 2% auto;
}

.weather-forecast-temperatures {
    text-align: center;
    color: #f65282;
    margin-top: 7%;
    display: flex;
    justify-content: center;
}

.weather-forecast-temperature {
    padding: 0 3%;
}

footer {
    border-bottom: 1px solid #f9f7fe;
    padding: 2% 0 0 4%;
    text-align: left;
    font-size: 90%;
    color: rgba(0, 0, 0, 0.6);
}
