body {
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 70vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
    border-radius: 10px;

    padding: 0;
}

.leftindex,
.rightindex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    border-radius: 10px;
    margin: 0;
    padding: 0;
}
/*
.leftindex {
    background-color: chartreuse;
}

.rightindex {
    background-color: blue;
}
*/
.imageindex {
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    width: 100%;
}

img {
    width: 100%;
    height: auto;
}
footer.footerindex,
nav.navindex,
header.headerindex {
    width: 90%;
}

.aboutfsf {
    width: 80%;
}

footer.footerindex {
    margin-bottom: 20px;
}

header.headerindex {
    border-radius: 10px;
}

nav.navindex {
    margin-top: 20px;
}

figure {
    background-color: black;

    color: white;
    font-size: 16px;
    padding: 4px;
    font-style: italic;
    border-radius: 6px;
    width: 100%;
}
.aboutfsf {
    /* background-color: darkseagreen;*/

    font-size: 16px;
}

@media only screen and (max-width: 1200px) {
    .container {
        width: 99vw;
    }

    .leftindex {
        width: 46%;
    }
    .rightindex {
        width: 54%;
    }
}
@media only screen and (max-width: 720px) {
    .container,
    .rightindex,
    .leftindex,
    header.headerindex {
        border-radius: 0;
    }

    .container {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
        margin: auto;
        padding: 0;
    }
    .rightindex,
    .leftindex {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    img.imageindex {
        margin: 0;
        padding: 0;
    }

    .aboutfsf {
        width: 88vw;
        max-width: 100%;
        height: auto;
    }

    .imageindex {
        width: 100vw;
    }
}
