#learningboard_navbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    height: 40px;
    overflow: none;
    padding: 10px;
    /* display: flex; */
    text-align: center;
    align-items: center;
    background-color: rgb(37, 37, 56);
    z-index: 5;
}
#learningboard_navbar>form{
    float: left;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}
#learningboard_navbar>form>*{
    height: 100%;
}
#learningboard_navbar input[type=search]::placeholder{
    color: lightgray;
    font-style: italic;
}
#learningboard_navbar input[type=search]{
    
    background: linear-gradient(45deg, rgb(30, 30, 143), rgb(15, 110, 165));
    background-size: 200%;
    padding: 5px 10px;
    transition: 1s;
    color: white;
    border: none;
}
#learningboard_navbar button[type=submit]>img{
    width: 30px;
    height: 30px;
}
#learningboard_navbar button[type=submit]{
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: linear-gradient(45deg, rgb(30, 30, 143), rgb(15, 110, 165));
    background-size: 200%;
    padding: 5px;
    transition: 1s;
}

#learningboard_navbar button[type=submit]:hover{
    background-position: 90% 0;
}
.button2{
    float: right;
    height: 100%;
    color: white;
    background: linear-gradient(45deg, rgb(59, 155, 59), rgb(160, 229, 160));
    background-size: 200%;
    font-size: large;
    font-weight: bold;
    border: lightgreen 2px solid;
    padding: 5px 10px;
    transition: 1s;
    cursor: pointer;
    margin: 0px 5px;
}
.button3{
    float: right;
    height: 100%;
    color: white;
    background: linear-gradient(45deg, rgb(155, 149, 59), rgb(229, 228, 160));
    background-size: 200%;
    font-size: large;
    font-weight: bold;
    border: yellow 2px solid;
    padding: 5px 10px;
    transition: 1s;
    cursor: pointer;
    margin: 0px 5px;
}
.button2:hover{
    background-position: 90% 0;
}
.button3:hover{
    background-position: 90% 0;
}
body{
    padding-top: 130px;
}
/* @media screen and (max-width: 800px) {
    #learningboard_navbar{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        height: 80px;
        gap: 5px;
    }
    #learningboard_navbar>*{
        flex: 30px;
        width: 100%;
        float: none;
    }
    body{
        padding-top: 170px;
    }
} */