* {
    box-sizing: border-box;
    padding: 0;
}
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: url(/images/background-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.card {
    width: 90%;
    max-width: 500px;
    background-color: rgba(26, 25, 18, 0.7);
    border: none;
    border-radius: 20px;
    padding: 20px;
}
.search-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#search-input {
    flex: 1;
    margin-right: 20px;
    padding: 20px;
    height: 30px;
    border: none;
    border-radius: 20px;
    background-color: rgba(26, 25, 18, 0.3);
    font-size: 20px;
    color: white;
}
#search-button {
    border: none;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background-color: rgba(26, 25, 18, 0.5);
    cursor: pointer;
}
.fa-solid {
    color: white;
}
.weather-area h1{
    font-size: 40px;
}
.weather-area h2{
    font-size: 45px;
}
.weather-area h3 {
    font-size: 25px;
}
span {
    color: red;
}
.weather-cond-area {
    display: flex;
}
#cond-text  {
    text-transform: capitalize;
}
#humidity,
#wind-speed {
    color: white;
}
.detailed-cond-area h3 {
    color: red;
}
h1,
h2,
h3 {
    margin-left: 8px;
}
#not-found-message {
    color: red;
    display: none;
}