* {
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(63, 63, 63);
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 90vh;
    width: 99vw;
    justify-content: center;
}

.card {
    display: flex;
    /* justify-content: space-around; */
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #00feba, #5b548a);
    border-radius: 20px;
    width: 25vw;
    height: 35vw;
    padding: 10px;
}

.top {
    /* border: 2px solid black; */
    margin-top: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top input {
    font-size: 1.1rem;
    color: black;
    width: 70%;
    height: 100%;
    border: none;
    padding: 3px 20px;
    border-radius: 40px;
}

.top input:focus {
    border: none;
    outline: none;
}

.btn {
    cursor: pointer;
    margin: 5px;
    border: none;
    border-radius: 100px;
    background-color: white;
}

.btn img {
    height: 30px;
    padding: 8px;
    padding-right: 11px;
}

.btn:hover {
    background-color: rgb(231, 231, 231);
}

.weatherLogo img {
    height: 150px;
}

#invalid {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-align: center;
    margin: 20px 5px;
}

.mid {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    /* border: 2px solid black; */
}

.temp {
    font-size: 3.5rem;
    font-family: monospace;
    font-weight: 400;
}

.placeName {
    font-size: 2rem;
}

.humidity,
.windSpeed {
    display: flex;

}

#humidityAge,
#windSpeedAge {
    font-size: 2rem;
}

.humidity img,
.windSpeed img {
    height: 30px;
    padding-right: 15px;
    padding-top: 10px;

}

.bottom {
    /* border: 2px solid black; */
    width: 95%;
    position: absolute;
    bottom: 45px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#apiId {
    background: linear-gradient(135deg, #00feba, #5b548a);
    border-radius: 20px;
    height: 15vh;
    width: 26vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

#apiId input {
    font-size: 1.1rem;
    color: black;
    width: 58%;
    height: 50%;
    border: none;
    padding: 3px 20px;
    border-radius: 40px;
}

#apiId input:focus {
    outline: none;
}

footer {
    display: flex;
    justify-content: center;
    font-weight: bold;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100vw;
    background-color: black;
    margin: 0;
    padding: 5px;
}

footer div {
    font-size: 1.2rem;
    cursor: pointer;
    margin: 5px 10px;
}

footer i {
    cursor: pointer;
    margin: 5px;
}
