body {
    margin: 0px;
    font-family: Barlow, Lato;
    font-size: 16px;
    /* color 3 */
    background-color: #212C6830;
}

.sidebar-background, .up-button{
    /* color 1 */
    background-color: #212C68;
}

.open-sidebar-button-color {
    /* color 1 */
    color: #212C68;
}

.sidebar-text a, .up-button{
    /* color 2 */
    color: white;
}

.hover-background-color:hover, .navi-item a:hover {
    /* color 5 */
    background-color: #E62F25;
}

.content-background {
    /* color 4 */
    background-color: white;
}

.bibtex-window-colors {
    /* color 1 */
    border-color: #212C68;
    background-color: #F1F1F1;
}

.content a:link {
    /* color 6, preferably equal to color 5 */
    color: #005a9c;
}
.content a:visited {
    /* color 6, preferably equal to color 1 */
    color: #212C68;
}
.content a:hover {
    /* color 6, can be anything */ 
    color: #E62F25;
}

.up-button {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
}

.bibtex-button {
    position: relative;
    display: inline-block;
}

.bibtex-window {
    display: none;
    position: absolute;
    border-style: solid;
    border-width: 3px;
    z-index: 1;
    text-align: left;
    padding: 10px;
    box-shadow: 0px 8px 16px 0px #00000044;
    font-size: 10px;
}

.image-button {
    cursor: pointer;
}

.list-row {
    display: flex;
    flex-direction: row;
}

.list-item {
    text-align: right;
    margin-right: 5px;
}

.list-description {
    text-align: justify;
}

.open-sidebar-button {
    font-size: 50px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    float: left;
}

.close-sidebar-button {
    font-size: 50px;
    width: 40px;
    padding-left: 3px;
    padding-right: 3px;
    float:right;
}

.navi-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


.navi-item a {
    display: block;
    padding: 10px;
    padding-left: 15px;
    text-decoration: none;
    font-size: 20px;
}

.social-links-block {
    padding: 10px;
    padding-left: 15px;
}

.social-link {
    display: flex;
    float:left;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 5px;
    margin-right: 10px;
}


.unilogo {
    margin: 15px;
    height: auto;
    float: left;
}

.small-photo {
    margin: 10px;
    border-radius: 50%;
    width: 50px;
    float: right;
}

.photo {
    margin: 10%;
    margin-top: 0px;
    border-radius: 50%;
    width: 80%;
}

.sidebar {
    height: 100%;
    width: 200px;
    position: fixed;
    top: 0;
    z-index: 2;
    overflow: auto;
}


@keyframes animateleft {
    from {
        left: -200px;
        opacity: 0
    }

    to {
        left: 0;
        opacity: 1
    }
}

.header {
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
}

.overlay {
    cursor: pointer;
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000080;
    z-index: 1;
    animation: animateopacity 0.4s;
}

@keyframes animateopacity {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.content {
    padding: 30px;
}
.content p {
    text-align: justify;
}

.center-wrapper {
    display: flex;
    margin: auto;
}

@media (max-width:899px) {
    .sidebar {
        display: none;
        animation: animateleft 0.4s;
    }

    .overlay {
        display: none;
    }

    .close-sidebar-button, .header, .up-button {
        display: block;
    }
    
    .main {
        margin-left:0px;
        width: 100%;
    }

    .unilogo {
        width: 124px;
    }

    .content {
        width: fit-content;
    }

    .center-wrapper {
        width: 100%;
    }

    .list-item {
        min-width: 80px;
    }
}

@media (min-width:900px) {
    .sidebar{
        display: block !important;
    }

    .close-sidebar-button, .header , .overlay, .up-button{
        display: none !important;
    }

    .main {
        margin-left:200px;
    }

    .unilogo {
        width: 170px;
    }

    .content {
        width: 640px;
    }

    .list-item {
        min-width: 100px;
    }

    .center-wrapper {
        width: 900px;
    }
}

@font-face {
    font-family: made-evolve-sans;
    src: url(fonts/MADE_Evolve_Sans_Regular.otf);
}
