body {
    background-color: #f9f7fe;
    font-family: "Roboto flex";
}


.roboto-flex-font {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

.weather-app {
    background-color: #ffffff;
    max-width: 600px;
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(224, 224, 224, 0.8);
    border-radius: 15px;
    justify-self: center;
}

.search-form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-form-input {
    background-color: #f9f7fe;
    border: none;
    border-radius: 6px;
    width: 81%;
    font-size: 16px;
    padding: 15px 25px;
}

.search-form-button {
    background-color: #885df1;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 6px;
}

.city {
    font-size: 38px;
    line-height: 40px;
}

.weather-details {
    font-size: 16px;
    line-height: 25px;
    color: #00000069;
}

.weather-details strong {
    color: #f65282;
}

.weather-wrapper {
    display: flex;
}

.weather-icon {
    margin-right: 5px;
    padding-top: 15px;
}

.weather-current-temperature {
    font-size: 80px;
    font-weight: 600;
}

.unit {
    font-weight: 600;
    font-size: 20px;
    padding-top: 10px;
}

.forecast-items {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.forecast-day {
    text-align: center;
    color: #00000046;
    margin-bottom: 15px;
}

.forecast-icon {
    height: 60px;
    width: 60px;
}

.forecast-temperature {
    color: #f65282; 
    margin-top: 15px;
}

.forecast-temp-bold {
    text-align: center;
    font-weight: bold;
    margin: 0 5px;
}

.forecast-temp {
    margin: 0 5px;
}

header {
    border-bottom: 1px solid #a7a7a777;
}

main {
    padding-bottom: 20px;
}

footer {
    border-top: 1px solid #a7a7a728;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #0000006e;
}

a {
    color: #885df1;
}

.weather-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}