body {
    background-color: #F9F7FE;
    font-family: arial, sans-serif;
    padding-top: 100px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgb(247, 245, 246);
    border-radius: 10px;
    padding: 10px 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(65, 50, 100, 0.08) 0px 30px 50px 0px;
}

h1 {
    color: #885DF1;
    padding: 0;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 800;
}

h2 {
    font-size: 18px;
    color: rgb(86, 85, 85);
    padding-bottom: 20px;
}

.input-form {
    width: 100%;
    height: 80%;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #F9F7FE;
    background-color: #F9F7FE;
}

.input-form:focus {
    outline: none;
    border-color: #0069d9;
    background-color: white;
}

.btn-primary {
    height: 80%;
    margin-top: 20px;
    background-color: #885DF1;
    border: 1px solid #885DF1;
}

.btn-primary:hover {
    border: 1px solid #0069d9;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
    padding: 0;
    margin: 0;
}

li::first-letter {
    text-transform: uppercase;
}

.temperature-container {
    display: flex;
    align-items: center;
}

#temperature {
    font-size: 45px;
    font-weight: 700;
}

.temperature-units {
    position: relative;
    font-size: 16px;
    top: -18px;
}

.temperature-units a {
    color: #0069d9;
    text-decoration: none;
}

.temperature-units a.active {
    color: black;
}

.feel-temperature {

    text-align: left;
    margin-left: 20px;
    margin-top: -20px;
    font-size: 13px;
    color: #3b3c3d;
}

.condition {
    color: #7d7d7f;
    white-space: nowrap;
}

.host {
    padding-bottom: 20px;
    font-size: 18px;
    text-align: center;
}

.coder {
    color: #885DF1;
    font-weight: bold;
}

#forecast {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 30px;
    flex-wrap: wrap;
    color: #7d7d7f;
}

.forecast-min {
    color: #0069d9;
    font-weight: bold;
}

.forecast-max {
    color: rgb(221, 73, 108);
    font-weight: bold;
}