/* background and custom curser */
body{
    background-color:#FFF3F0;
    cursor: url('cursor/snail.cursor.png') 32 32, auto;
    font-family:courier;
}
        
/*custom curser glitch fix*/     
a {
    cursor: url('cursor/snail.cursor.png') 32 32, auto;
}

/*custom curser hovering */
a:hover{
    cursor: url('cursor/snail.cursor.click.png') 32 32, auto;
}

/* change color of navigation bar */
.topbar_navigation {
    height:30px;
    width:98.5vw;
    display: flex;
    position: relative;
    align-items: center; /* center text horizontal */
    justify-content: flex-start; /* center text left side */
    border-radius:10px;
    top:0;
    left:0;
    background-color:	#FFE4E1;
    overflow:hidden;
}
        
/* change color of hover links navigation bar */
.topbar_navigation a:hover {
    background-color: #FCD8D4;
    color:#A3623C;
}
      
/* Style links navigation bar */
.topbar_navigation a {
    color:#B86F45;
    padding:14px 16px;
    text-align:center;
    text-decoration:none;
    font-size:17px;
}