body{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding:0;
    background-size:cover;
    height: auto;
    width:100vw;
    background:linear-gradient(90deg,#bcddbc,#fff);
}

@font-face {
    font-family: header;
    src: url(FreeSansBold.ttf);
}
header{
    width:100%;
    /* background-color: aqua; */
   
    height:50px;
    display:flex;
    position:relative;
    justify-content: center;
    align-items: center;
    text-align:center;
    /* border-bottom:solid #000; */
    font-size:large;
    font-weight: bold;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* color: ; */
    letter-spacing: 3px;
    font-size: 200%;
    font-family: header;
}
section{
    text-align: center;
    /* margin-top:2%; */
    word-spacing: 1px;
    letter-spacing: 1px;
}
#search{
    align-self: self-end;
    margin-top:2%;
    margin-right:3%;
    border-radius:1vh;
    /* width:0; */
    
    
}

/* #search:hover ,#icon{
    width: 400px;
} */
#icon{
    position:absolute;
    
}
#result_box{
    width:100%;
    height:auto;
    display: flex;
    flex-wrap:wrap;
    flex-direction:column;
    margin-top:5%;
    background-color:transparent;
    gap:2vh;
}

#content{
    padding:2vh;
    width:auto;
    height:auto;
    display:grid;
    gap:2vh;
    
    
     
     
}
#loading-text {
    font-size: 24px;
    position: absolute;
    top:20vh;
    color:#fff;
}
.btn {
    position: relative;
    display: inline-block;
    background: #d4af37;
    color: white;
    top: 3.4vh;
    padding: 8px 15px;
    border-radius: 9px;
    width:4vh;
    margin-left:1vh;
    
    text-decoration: none;
    transition: transform 0.5s ease;
}

.btn:hover {
    
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transform: scale(1.1);

}



