body {
    background-color: #f9f7fe;
    font-family: "Roboto Condensed", sans-serif;
}

a {
    color: #885df1;
}

header {
border-bottom: 1px solid #f9f7fe;
padding: 0 0 30px 0;
}

footer {
    border-top: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 14px;
}

main {
    padding: 30px;
}
.app-container {
    background-color: white;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 10px;
    padding: 30px;
}

.search-form-input {
    background-color: #ffe6ee;
    border: none;
    border-radius: 6px;
    width: 70%;
    font-size: 16px;
    padding: 15px 20px;
}

.search-button {
    background: #fc46aa;
    padding: 15px 20px;
    margin-left: 5px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    color: white;
}

.weather-info {
    display: flex;
    justify-content: space-between;
}

.weather-details {
    font-size: 16px;
    color: rgba(39, 33, 66, 0.6);
    line-height: 24px;
    font-weight: 500;
}

.weather-details strong {
    color: #fc46aa;
}

.weather-app-temp-container {
    display: flex;
}

.weather-app-icon {
    width: 95px;
    height: 90px;
    margin-right: -20px;
}

.weather-app-value {
    font-size: 75px;
    margin-left: 10px;
    line-height: 90px;
    font-weight: bold;
}

.weather-app-unit {
    margin-top: 6px;
    font-size: 28px;
    font-weight: 500;
}
