body {
    background-color: #f9f7fe;
    font-family:"PT Mono", monospace;
}

a {
    color: #885df1
}
.pt-mono-regular {
    font-family: "PT Mono", monospace;
    font-weight: 400;
    font-style: normal;
}
.weather-app {
    background: white;
    max-width: 600px;
    margin: 30px auto;
    padding: 30px; 
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 10px
}

header{ 
    border-bottom: 1px solid #f9f7fe;
    padding: 0 0 30px 0;
    text-align: center;
    font-size: 12px;
}

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

.search-form-button{
    background-color: #885df1;
    padding: 15px 25px; 
    border: none;
    border-radius: 6px; 
    margin-left: 5px;
    color: white;
    font-size: 16px; 
}

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

main{
    padding: 30px 0; 
}

.weather-app-city {
    margin: 20px 10px 10px 0; 
    font-size: 38px; 
    line-height: 48px; 
}

.weather-app-details {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    color: rgba(39,33,66,0.4);
}

.weather-app-details strong{
    color: #f65282;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
}

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

.weather-app-icon{
    font-size:42px; 
    margin-top: 22px; 
}

.weather-app-temperature{
    font-size:68px; 
    margin-left: 10px; 
}

.weather-app-unit{
    margin-top: 13px; 
    font-size: 28px;
}

footer {
    border-top: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6)
}
