@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Varela Round', sans-serif;
    
}

body {
    background-color: #27395A;
}
h1 {
    font-size: 30px;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 22px;
}
.header-background {
    margin: auto;
    margin-top: 20px;
    display: inherit;
    flex-direction: inherit;
    justify-content: inherit;
    align-items: inherit;
    width: 50%;
    background-color: #d56590;
    border: 2px solid #c9a7ae;
    border-radius: 55px;
    box-shadow: inset 0px 0px 20px 5px rgba(0, 0, 0, 0.812);
    
}
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 1;
}

.logo img {
    width: 150px;
}
.hero {
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#searchBox {
    border-radius: 55px;
    border: 2px solid #c9a7ae;
    padding: 5px;
    background: #c8a0a5;
    display: flex;
    align-items: center;
    box-shadow: inset 0px 0px 10px 3px rgba(0, 0, 0, 0.812);
}


#searchIcon {
    cursor:grab;
    /* font-size: 25px; */
    transition: 1s;
    justify-content: center;
    display: flex;
    align-items: center;
}
#searchIcon:hover {
    color: #d56590;
    /* transform: scaleX(.5); */
}
#proceedBtn {
    display: none;
}
#proceedBtn.active {
    display: block!important;
}

.btn {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    color: black;
    border-radius: 35px;
    border-color: transparent;
    transition: 0.5s;
    /* margin-left: 20px; */
}
.btn:hover {
    background-color: white;
    border-color: #c9a7ae;
    border-style: solid;
    color: #d56590;
    width: 65px;
    transition: 0.5s;
}


input {
    font-size: 15px;
    width: 0px;
    border: 0;
    color: #000000;
    background: transparent;
    outline: none;
    transition: 1s;
}


.active input {
    width: 200px;
    padding: 10px;
}
.active input::placeholder {
    color: #000000;
}
.weather-block {
    text-align: center;
    background-color: #c8a0a5;
    margin: auto;
    border: 2px solid #c9a7ae;
    border-radius: 55px;
    box-shadow: inset 5px 5px 5px 0px rgba(0, 0, 0, 0.812);
    max-width: fit-content;
    height: 100px;
    padding: 20px;
}

.weather-box {
    display: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, width 1.5s ease-in-out;
}

  /* Add this class to make the weather box visible with the animation */
.weather-box.active {
    display: block;
    opacity: 1;
    width: 100%;
}

@media (max-width: 450px) {
    .header-background {
        width: 75%;
    }
    .container {
        margin: 10px 0px 20px 0px ;
    }

}