.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    margin-bottom: 30px;
}

.projectPicture {
    display: none;
    text-align: center;
    height: 450px;
}

.numbertext {
    color: #000000;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    padding: 16px;
    margin-top: -50px;
    color: #463f3a;
    font-size: 20px;
    font-weight: bold;
    user-select: none;
    -webkit-user-select: none;
}

.prev:hover,
.next:hover,
.numbertext {
    background-color: #EDEDE9;
    opacity: 0.5;
}

.next {
    right: 0;
}


.pictureGlimpse {
    opacity: 0.6;
    height: 100px;
    margin: auto;
}

.active,
.pictureGlimpse:hover {
    opacity: 1;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row {
    width: auto;
    margin: auto;
}

.column {
    float: left;
}

img {
    vertical-align: middle;
}

.picture {
    height: 450px;
    display: block;
    margin: auto;
    object-fit: scale-down;
}

table {
    margin: auto;
    width: 50%;
    text-align: justify;
}

h1 {
    color: #463f3a;
    text-align: center;
    margin: 15px;
}

.fakeTable {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

li {
    list-style-type: '+ ';
}

@media screen and (max-width: 1000px) {
    .fakeTable {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: auto;
    }

    table {
        margin: auto;
        width: 100%;
    }

    .pictureGlimpse {
        height: 50px;
    }

    .container {
        width: 100%;
        height: auto;
    }

    .prev,
    .next,
    .numbertext {
        background-color: #EDEDE9;
        opacity: 0.6;
    }

    .picture {
        max-height: 450px;
        max-width: 100%;
        display: block;
        margin: auto;
        object-fit: scale-down;
    }
}