* {
    font-family: sans-serif;
    color: #333;
}

a {
    color: #333;
}

h1 {
    text-align: center;
    font-weight: 100;
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 0;
    color: #0074D9;
}

h1 span {
    font-family: 'Fascinate Inline', cursive;
}

#subtitle {
    text-align: center;
    font-weight: 100;
    font-size: 30px;
    font-size: clamp(1.5rem, 3vw, 3rem);
    margin: 0;
    font-style: italic;
    color: rgba(51, 51, 51, 0.801);
}

#load {
    text-align: center;
    font-style: italic;
    color: rgba(51, 51, 51, 0.623);
}

.blinkMe {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
    opacity: 0;
    }
}

body {
    display: flex;
    flex-direction: column;
    align-content: center;
    background: #E4E4E4;
}

ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

li {
    align-items: center;
    margin: 50px 20px;
    border-radius: 6px;
    padding: 40px;
    width: 275px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    background: white;
}

li:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
}

hr {
    width: 80%;
    margin-top: 20px;
}

#yourCity {
    text-align: center;
    font-weight: 600;
    margin: 20px;
}

input {
    border: none;
    width: 40%;
    margin: auto;
    padding: 8px;
    text-align: center;
    margin-top: 10px;
    outline: none;
    border-radius: 30px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

input:focus {
    border: #777 2px solid;
}

button {
    border: none;
    color: white;
    background: #23c0b6;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
}

button:hover {
    background: #177e77;

}

button:active {
    transform: translateY(4px);
}

.fas {
    color: tomato;
}

.fas, .far {
    font-size: 20px;
    cursor: pointer;
}
.fas:hover, .far:hover {
    transform: translateY(-2px);
}

img {
    width: 40%;
    width: clamp(40%, 300px, 80%);
    border-radius: 10px;
    opacity: .9;
}

#citySearch {
    display: none;
    flex-direction: column;
    align-items: center;
}