.slideshow-container {
    position: relative;
    width:100%;
    max-width: 1300px;
    height:400px;
    margin:auto;
    overflow:hidden;
}
.slideshow-container img {
    position:absolute;
    width:100%;
    overflow:hidden;
    display:none;
    z-index: -1;
    margin-top:-20%;
}

.slideshow-container h1 {
    position:absolute;
    width:100%;
    bottom:15px;
    text-align: center;
    font-size:36px;
    opacity:0.8;
    font-style: italic;
    color:white;
    text-shadow: 6px 6px 8px rgba(0,0,0,0.5);
    font-weight:normal;
}

.content {
    background-color: white;
}

#projects {
    display:flex;
}

.project {
    width:33%;
    padding: 10px;
    padding-top: 20px;
}
.projecttext {
    text-align: justify;
    padding: 5px;
}
.projectimage {
    width:100%;
    position:relative;
}
.projectimage img{
    width:100%;
    z-index: -1;
    overflow:hidden;
    border:1px solid black;
}
.projectimage h1 {
    position:absolute;
    width:100%;
    bottom:0px;
    text-align: center;
    font-size:86px;
    opacity:0.4;
    color:white;
    text-shadow: 6px 6px 8px rgba(0,0,0,0.5);
    line-height:103px;
    font-weight:normal;
}

.projectTitle {
    font-weight:bold;
    font-size:20px;
    line-height:24px;
    color:#c4c4c4;
    font-family:"Verdana","Tahoma","Geneva",sans-serif;
    text-align: center;
    margin-bottom:10px;
    margin-top:10px;
}

#howcanwehelp {
    text-align: center;
    margin-top:20px;
    font-size:20px;
}
#threelinks{
    margin-top: 25px;
    display:flex;
}

#threelinks a{
    width:33%;
    text-align: center;
    line-height:50px;
    margin:10px;
    height:50px;
    border: 3px solid gray;
    text-decoration: none;
    color:black;
    white-space:nowrap;
}
#counters {
    display: flex;
    justify-content: center;
    background-color: #009245;
    padding: 5px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.counter{
    /*width: 40%;*/
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-grow:1;
    flex-basis:0;
}
.counter > div{
    padding: 5px;
    font-size: 20px;
    text-align: center;
}
#counters > div + div{
    border-left:2px solid white;
}
.counter > div:nth-of-type(1){
    /*flex-grow: 1;*/
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 30px;
}

.counter > div:nth-of-type(2){
    color: white;
    /*background-color: #823EB9;*/
}

#threelinks a:hover{
    background-color: #823EB9;
    color:white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

@media screen and (max-width:800px){
    #projects {
        display:block;

    }
    .project {
        width:85%;
        margin:auto;
    }
    .projectimage {
        margin:auto;
        width: 65%;
    }

    #threelinks {
        display:block;
    }
    #threelinks a {
        display:block;
        width:80%;
        margin-left:auto;
        margin-right:auto;
        height:50px;
    }
    .slideshow-container {
        display:none;
    }
    #counters {
        margin-top: 170px;
    }
    .counter > div:nth-of-type(1){
        font-size: 20px;
    }
    .counter > div:nth-of-type(2){
        color: white;
        font-size: 16px;
    }
}