* {
	vertical-align: baseline;
	border: 0 none;
	padding: 0;
	margin: 0;
}

body {
    font-family: 'Trebuchet MS';
    font-size: 18px;
}

header {
    background: rgb(53, 53, 53);
    color: white;
    text-align: center;
    font-size: 22px; 
    padding: 15px;
}

h2 {
    margin: 0.5rem, 1rem;
    padding: 0 1rem;
}

p {
    padding: 8px;
    margin: 8px;
}

h3 {
    color: black;
    padding: 5px;
}

main {
    width: clamp(200px, 70%, 1000px);
}

aside {
    padding: 5px 0 15px 10px;
    width: clamp(150px, 35%, 500px);
    height: 100%;
    background: rgb(240, 240, 240);
}

form {
    display: flex;
    justify-content: flex-start;
}

input {
    padding: 7px;
    margin: 6px -5px 12px 8px;
    border: 2px solid lightgray;
    border-radius: 6px 0 0 6px;
    font-size: 20px;
    width: clamp(70px, 100%, 270px);
}

button {
    width: clamp(140px, 95%, 355px);
    color: rgb(90, 90, 90);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 20px;
    background: white;
    padding: 12px;
    border: 1px solid lightgray;
    border-radius: 6px;
    margin: 0 3px;
    text-align: left;
}

button:hover {
    opacity: 0.85;
    cursor: pointer;
}

#clear-cities-btn {
    height: 44px;
    width: 44px;
    padding: 2px;
    margin-bottom: 10px;
    margin-left: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    /* flex-flow: column wrap; */
}

.button-list {
    width: 97%;
    margin: 0.7rem auto;
}
.container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0 8px 0 0;
    margin: 0 auto;
    max-width: 1500px;
}

.city-display {
    display: flex;
    flex-flow: column;
    background: rgb(168, 222, 255);
    /* height: 55%; */
    max-height: 600px;
    padding: 0.3rem;
    margin: 1rem;
    border: 1px solid rgb(53, 53, 53);
    border-radius: 6px;
    box-shadow: 3px 3px 10px  rgb(66, 66, 66);
}

.city-display-content {
    margin: 0.5rem;
    display: flex;
    flex-flow: row;
}

.five-day {
    margin: 1rem;
    color: white;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 0.6rem;
}

#uv {
    padding: 6px;
    border-radius: 4px;
}

.low {
    color: white;
    background: green;
}

.moderate {
    background: rgb(255, 230, 0);
    color: black;
}

.high {
    color: black;
    background: orange;
}

.very-high {
    color: white;
    background: red;
}

.extreme {
    color: white;
    background: purple; 
}

.forecast {
    background-color:rgb(0, 132, 255);
    padding: 0.4rem;
    border: none;
    border-radius: 6px;
    box-shadow: 2px 2px 8px rgb(53, 53, 53);
}

.temp-5,
.humid-5 {
    padding: 5px;
    margin: 0;
}

.start-img {
    height: 60px;
    width: 60px;
    opacity: 0.85;
}

#search-btn {
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 132, 255);
    padding: 5px 0 0 8px;
    border: solid 2px rgb(240, 240, 240);
    border-radius: 8px;
    margin: 4px 0;
    /* position: relative;  */
    transition: 0.2s ease-in-out;
}
  
#search-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#weather-icon {
    /* padding: 3px; */
    position: relative;
    left: 5px;
    top: 0.7rem;
}