body {
    background-color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: auto;


}

header {
    margin: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: solid gray;
    padding: 5px;
    height: 80px

}

.container {
    display: flex;
    background-color: #Febd2d;
    padding: 5px;
    height: auto;
    padding-left: 0px;
    width:100%;


}

.navbar {
    padding: 10px;
    font-size: 22px;
    text-align: center;
    position: sticky;
    top:0;
    left:8px;
    width: 200px;
    height: 100vh;
    z-index: 10;
    overflow-y: auto;
    box-sizing: border-box;
    flex-shrink: 0;
    border-top: 1px solid black;
    background-color:#fbfbfb;

}

#pittsburgh-logo {
    width: 319px;
    height: 60px;
    justify-content: flex-start;
}

#link-holder {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-links {
    margin: 5px 10px;
    font-size: 14px;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px;
    color: rgb(77, 77, 77)
}

.header-links:hover {
    padding-bottom: 10px;
    color: rgb(0, 0, 0);
}

.hold-space {
    padding: 10px;
    width: 185px;
    height: 100%;
    flex-shrink: 0;
    box-sizing: border-box;


}

.content {
    flex: 1;
    flex-direction: column;
    background-color: #fbfbfb;
    border: 1px solid black;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border-bottom: 0px;
    height: auto;
}

.collapsible {
    cursor: pointer;
    padding: 10px;
    width: 90%;
    text-align: left;
    font-size: 14px;
    margin: 0 5px;
}

.collapsible:hover {
    font-weight: bold;
}

.list-element:hover {
    font-weight: bold;
}

.list-element {
    cursor: pointer;
    padding: 10px;
    width: 90%;
    text-align: left;
    font-size: 14px;
    margin: 0 5px;
}

.active,
.collapsible:hover {}

.collapsible:after {
    content: '\002B';
    font-weight: bold;
    float: right;
    margin-left: 2px;

}

.active:after {
    content: "\2212";
}

.dropdown {
    padding: 0px 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 15px;
    text-align: left;
    margin-left: 0px;
}



.drop-list a{
    font-size: 14px;
    text-decoration: none;
    color:rgb(20, 20, 20);
    
}
.drop-list{
    margin-bottom: 20px;
}

.drop-list:hover{
    font-weight: bold;
}

#first-image {
    border-radius: 10px;
    max-width:90%;
    max-height:90%;

}

.entry-content {}

.article-content {
    font-size: 20px;
    text-align: left;
    margin: 50px;
    color: #2e2e2e;
    color: #2e2e2e;
    text-indent: 50px;
    line-height: 1.7;


}



footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid black;
    height: auto;
}

footer a {
    font-size: 18px;
    text-decoration: none;
    margin: 20px
}

footer a:hover {
    text-decoration: underline;
}

/*Table stuff*/
td,th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th{
    font-size: 22px;
    color:#3f3f3f
}

/*acknowledge*/
.group-names {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.heading-indent{
    margin-left:20px;
    font-weight: bold;
}

.content-indent{
    margin-left:60px;
}

a {
    text-decoration: none;
    color:black;
}
.report-content{
    padding:10px;
}
.report-content p, li, a{
    font-size: 16px;
    color:#333;
    line-height: 1.5;
}
.group-names:hover{
    
    text-decoration: underline;
}


@media screen and (max-width:980px) {
    header{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding:20px;

    }
    .header-links{
        align-items: flex-start;
    }
    .header-links:hover{
        color: rgb(0, 0, 0);
        padding-bottom: 0;
    }

    #link-holder{
        margin:10px;
        height: 100%;
        justify-content:flex-start;
        align-items: flex-start;
    }

}
@media screen and (max-width:755px) {
    .content{
        border: none;
    }
    .container{
        flex-direction: column;
        padding: 5px;
        margin:0px;
    }
    .navbar{
        padding: 10px;
        font-size: 22px;
        position:inherit;
        width: 100%;
        height: 100%;
        z-index: 10;
        border: 0;
        background-color: #fbfbfb;
    }
    .hold-space{
        display: none;
    }
    
}

@media screen and (max-width:550px) {
    .header-links{
        margin:0px
    }
    header{
        padding: 20px 0px;
    }
    .article-content{
        font-size: 14px;
    }


}

@media screen and (max-width:390px) {
    .header-links{
        font-size:11px;
    }
    .group-names{
        
        flex-direction:column;
        margin-bottom:20px;

    }
    .group-names img{
        max-width:100%;
        height:auto;

    }
    
    
    


}