body{
    margin: 0;
}
header{
    width:100%;
    height:5%;
    background-color: lightcyan;
}
header a{
    margin-left: 3%;
    text-decoration: none;
    font-size: larger;
}
#container{
    background-image: url('background.jpg');
    background-size: auto;
    backdrop-filter: drop-shadow(4px 4px 10px black);
}
#container #app-title{
    text-align: center;
}
#container #searchbar-div{
    text-align: center;
}
#display-search-results{
    margin: 4%;
    display: flex;
    justify-content:space-evenly ;
    flex-wrap: wrap;
}
/*starting of favouite page */
#favourite-container{
    background-image: url('istockphoto-637508072-170667a.jpg');
}
#favourite-container h2{
    color: white;
}
#display-favourites{
    display: flex;
    justify-content: space-between;
}
#heading-favourite{
    text-align: center;
}
/*details page */
#details-header{
    display: flex;
}
#detailsContainer-main{
    margin: 5%;
}
#tools-selector{
    background-color: palegreen;
    margin-top: 5%;
    display: flex;
    justify-content: space-around;
    box-shadow: 3px 3px 3px 3px red;

}
#tools-selector a{
    color: black;
    font-weight: bold;
}
#tools-selector a:hover{
    color:blue;
}
#tools-selector a:active{
    color:red;
}
#imgContainer{
    background-color: antiquewhite;
    display: inline-block;
    border-radius: 10%;
    border:2px solid black;
}
#detailsContainer{
    width: 40%;
    display: inline-block;
    vertical-align: top;
    margin-left: inherit;
}
.detail-item {
    padding: 20px;
    width: 80%;
}
.anchor {
    display: block;
    height: 200px;
    margin-top: -200px;
    visibility: hidden;
}
#stats-container {
    display: flex;
    justify-content: left;
    width: 100%;
}
#stat-names {
    display: flex;
    flex-direction: column;
    width: fit-content;
    padding-right: 20px;
}
#stat-bars {
    width: 80%;
}
.bar-container {
    width: 100%;
    margin-top: 10px;
    background: grey;
    border-radius: 10px;
}
.bar {
    background-color: rgb(31, 9, 228);
    border-radius: 10px;
    padding: 10px;
    transition-duration: 600ms;
    color:white;
}
#stat-names span {
    display: block;
    padding: 15px;
    font-weight: bold;
}


/* .skills-display {
    padding: 1px;
    margin-bottom: 30px;
    
    
}
.skill-progress {
    width: 11rem;
    height: 1.5rem;
    background-color: lightgrey;
    border-radius: 1rem;
    box-shadow: 1px 1px 2px 1px #b9b9b9 inset;
    display: inline-block;
    margin-top: -4%;
}
#skill-name{
    text-align: left;
    width: fit-content;
} */
/* #imgContainer{
    width:300px;
    height:400px;
    border:2px solid black;
    border-radius: 10%;
}
#imgContainer img{
    border-radius: 20%;
} */

