



/*_____________________________________scroll bar______________________________________*/
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    border-left: 2px solid var(--color-fgd);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-fgd);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: none;
    border-top: 2px solid var(--color-fgd);
    border-bottom: 2px solidvar(--color-fgd);
}

/*_____________________________________general______________________________________*/
@font-face {
	font-family: 'Piazzolla';
	src: url(Piazzolla.ttf);
}

#all {

    height: 97vh;
    width: calc(100vw - 34px);
    border: 2px solid var(--color-fgd);
    margin: auto;
}

body {
    --color-bgd:   #182933;
    --color-fgd: white;
    background: var(--color-bgd);
    font-family: 'Piazzolla', serif;
    color: var(--color-fgd);
    box-sizing: border-box;
}

a{

    color: var(--color-fgd);
}

div,
main {
    border: 2px solid var(--color-fgd);
    margin: 4px;
    width: calc(100% - 8px);
    box-sizing: border-box;
}
section{
    border: 2px solid var(--color-fgd);
    margin: 4px;
    width: calc(100% - 8px);
    box-sizing: border-box;
    padding: none;
}
.invisible {
    border: none;
    margin: 0px;
    /*height: 100%;*/
}

#firstcolumn {
    width: 279px;
    float: left;
    border-right: 2px solid var(--color-fgd);
    border-bottom: 2px solid var(--color-fgd);
}
main {
    width: calc(100% - 288px);
    float: left;
    height: calc(80% - 10px);
    overflow: scroll;
    overflow-x: hidden;

}

/*_____________________________________image block______________________________________*/
img {
    width: 253px;
    height: 253px;
    margin: 4px;
    border: 2px solid var(--color-fgd);
    background: white;
    color: var(--color-bgd);
}



#img {
    height: 270px;

    float: left;
    margin-right: 0px;
}

/*_____________________________________header______________________________________*/
header {
    height: 20%;
    width: calc(100% - 279px);
    border: none;
    border-bottom: 2px solid var(--color-fgd);
    margin: 0px;
    float: left;
}

#name {
    height: calc(100% - 8px);
    float: left;
    width: calc(30% - 8px);
    padding: 15px;
    text-align: center;
}

#callingcard {
    height: calc(100% - 8px);
    float: left;
    width: calc(70% - 6px);
    margin-left: 1px;
    padding: 10px;
    padding-right: 20px;
    text-align: right;
}

/*_____________________________________menu______________________________________*/
#menu {
    float: left;
    margin-right: 0px;
    margin-top: 0px;
}



.button {
    padding: 9px;
    font-size: 18px;
    text-decoration: none;
    line-height: 1;
}

.button:hover {
    background: var(--color-fgd);
    color: var(--color-bgd);
}
.active {
    background: var(--color-fgd);
    color: var(--color-bgd);
}
#researchBtn #eduBtn #pubBtn{
    margin-bottom: 0px;
    text-decoration: none;
}
#research #edu #pub{
    border-top: none;
    margin-top: 0px;
    padding-top: 0px;
    text-decoration: none;
}


/*_____________________________________table styling______________________________________*/
table {
    width: calc(100% - 8px);
    border: 2px solid var(--color-fgd);
    margin: 4px;

}

tr {
    border: 2px solid var(--color-fgd);
    display: flex;
    margin: 3px;
    margin-top: 0px;
    width: inherit;
    margin-top: 4px;
}

td {
    padding: 10px;
}

.yr {
    text-align: right;
    width: 20%;
}

.firstofthree {
    width: 20%;
    margin-right: 4px;
}
.secondofthree{
    width: 30%;
    text-align: right;
}
.thirdofthree {
    text-align: left;
    width: 50%;
}

.nameofclass {
    width: 80%;
    margin-right: 4px;
}

/*_____________________________________rest of main______________________________________*/
.item {

    box-sizing: border-box;
    padding: 10px;
    width: calc(100% - 8px);
    border: 2px solid var(--color-fgd);
}

.roman {
    list-style-type: upper-roman;
}

.padding-left{
    padding: 25px;
}
.figure{
    background: none;
    border: none;
}
.box{
    display: flex;
}
/*_____________________________________text styling______________________________________*/
h1 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 2.5em;
    line-height: 1em;
    margin: 0px;
}

h2 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 1.5em;
    padding-left: 25px;
}

h3 {
    text-transform: uppercase;
    font-weight: normal;
    margin-left: 15px;
    margin-bottom: 10px;
}

p {
    margin: 0px;
    padding: 0px;

    border: none;
}
.text{
    margin-bottom: 30px;
}

.smallleading {
    line-height: 1.2;
}

div.button {
    text-transform: uppercase;
}
.derlined{
    text-decoration: none;
}
#light-mode{
    background: var(--color-fgd);
    color: var(--color-bgd);
    width: 65px;
    height: 65px;
    border-top-right-radius: 50%;
    position: fixed;
    left: 13px;
    bottom: 10px;
    padding: 12px 10px 10px 10px;
    line-height: 1.1;
    
}