.search-result-main-content{
    background-color: var(--background-color);
    font-family:'Raleway', sans-serif;
    padding: 80px;
}
.search-result-query{
    background-color: var(--background-color);
    color: var(--text-color);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index:1;
}
.search-result-query-text{
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.search-result-container{
    position:relative;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:50px;
    padding-top:100px;
}
.search-result-box{
    width: 60%;
    display:flex;
    flex-direction: column;
    color:var(--text-color);
}
.search-result-box:hover{
    cursor:pointer;
    transform: scale(1.01);
}
.mascot{
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background-color: aqua;
}
.search-result-box-top-text{
    width:   130px;
}
.search-result-box-bottom{
    margin-top: 10px;
}
.search-result-box-page{
    font-size: 15px;
    width: 100px;
}
.search-result-box-page:hover{
    text-decoration: underline;
    cursor: pointer;
}

.search-result-box-navbar{
    font-size: 8px;
    color: rgb(157, 175, 190);
    width: 100px;
}
.search-result-box-title{
    font-size: 30px;
    color: var(--title-color);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.search-result-highlight{
    font-weight: bold;
    font-size:18px;
    color:#D16C69;
}