body{
    font-family:tahoma;
    font-size: 18px;
    line-height: 160%;
    text-align: justify;
}
a{
    text-decoration: none;
    color: grey;
}
a:hover{
    color:black;
}
img{
    max-width: 100%;
}
#header{
    margin: 50px;
    font-size: 40px;
    font-weight: bold;
    display: flex;
}
#header a{
    color: black;
}
#main{
    display: flex;
    padding-bottom: 50px;
}
#navbar{
    margin: -50px 30px 0px 50px;
    padding-top: 50px;
    min-width: 130px;
    height: 100%;
    position:sticky;
    top: 0;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
}
#current{
    color: black;
    font-weight: bold;
}
#center{
    margin: 0px 50px 50px 20px;
    max-width: 550px;
}
#divider{
    display:none;
}
#gallery{
    margin: 0px 50px 0px 30px;
    max-width: 1000px;
    display: flex;
    flex-flow: column wrap;
    gap: 20px;
}
#blog{
    margin: 0px 50px 50px 20px;
    max-width: 550px;
}

@media only screen and (max-width: 600px) {
    #header{
        justify-content: center;
    }
    #navbar{
        margin: -15px 0px 40px 0px;
        padding: 0px 100px 0px 100px;
        flex-flow: row wrap;
        width: auto;
        justify-content: center;
        row-gap:5px;
        position: static;
    }
    #main{
        flex-flow: column nowrap;
    }
    #divider{
        margin: -10px 50px 30px 50px;
        display:block;
    }
    #center{
        margin: 0px 30px 0px 30px;
    }
    #gallery{
        margin: 0px 15px 50px 15px;
    }
    #blog{
        display: flex;
        justify-content: center;
    }
}