body {
    background-image: linear-gradient(#1F2830, #23353A)
}

h1 {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 50px;
    text-align: center;
    color: #A2C49B;
    margin-top: 0.5em;
    font-weight: 500;
}

img {
    width: 30px;
    height: 30px;
    margin-right: 0.1em;
    color: #093F54;
}

div,
input,
button {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 200;
    color: #10172A;
}

input,
button {
    font-size: 30px;
    font-weight: 300;
}

#prompt {
    position: absolute;
    font-weight: 500;
    font-size: 40px;
    width: 400px;
    text-align: center;
    top: 5em;
}

#canvas {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    margin-top: 2em;
    margin-bottom: 3em;
}

canvas {
    border-radius: 20px;
    box-shadow: 0 10px 10px 0 #274143, 0 -10px 10px 0 #274143, 5px 0px 10px 0 #274143, -5px 0 10px 0 #274143;
}

#description,
#temperature,
#feels-like,
#humidity,
#wind-speed,
#visibility,
#timezone {
    position: absolute;
    background-image: linear-gradient(#10172A, #093F54);
    color: transparent;
    background-clip: text;
}

#humidity,
#wind-speed,
#visibility {
    display: flex;
    flex-direction: row;
}

#description {
    font-size: 40px;
    top: 5em;
    width: 250px;
    text-align: center;
    font-weight: 400;

}

#temperature {
    text-align: center;
    font-size: 110px;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 400;
    top: 0.75em;
}


#humidity {
    font-size: 30px;
    top: 10em;
}

#wind-speed {
    font-size: 30px;
    top: 11.5em;
}

#visibility {
    font-size: 30px;
    top: 13em;
}

#timezone {
    font-size: 20px;
    top: 3em;
    font-weight: 300;
}

#error {
    color: white;
    text-align: center;
    margin-top: 1em;
}


#input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 2.5em;
}

#cityState {
    border: none;
    margin-right: 0.2em;
    background-color: #8FAD88;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 5px 5px 5px #274143;
    transition: all 0.2s;
}

#submitWeather {
    border: none;
    background-color: #8FAD88;
    border-radius: 15px;
    box-shadow: -5px 10px 10px #A2C49B inset;
    font-size: 20px;
    font-weight: 600;
    margin-left: 0.2em;
    padding: 0 1em 0 1em;
    transition: all 0.2s;
}

#cityState:hover, #submitWeather:hover {
    background-color: #A2C49B;
}

footer {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 20px;
    text-align: center;
    margin-top: 2em;
    color: #A2C49B;
}

h2 {
    margin-bottom: 0.5em;
    font-weight: 400;
}

p {
    font-weight: 200;
}