/*Sidebars*/
.image-container {
    width: 15%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Main Content*/
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content h1 {
    text-align:justify;
    font-family: "Hammersmith One";
    font-size: 44px;
    text-decoration-line: underline;
    margin-bottom: 0;
}

.main-content p {
    font-family: inter;
    font-size: 17px;
    width: 75%;
    max-width: 800px;
    margin: 10px 0px;
}

.main-content a {
    color: cornflowerblue;
    font-family: inter;
}

.main-content h3 {
    font-size: 21px;
    font-family: roboto;
    margin: 4px 0px;
}

.faq-item {
    width: 75%;
    max-width: 800px;
    margin-bottom: 40px;
}

.faq p {
    width: 100%;
}

.credits h3 {
    margin-top: 20px;
}

.credits, .contact {
    width: 75%;
    max-width: 800px;
}

.credits a {
    display: block;
}

.contact h3, .contact p {
    display: inline;
}

.contact div {
    margin: 30px 0px;
}

.contact {
    margin-bottom: 40px;
}

@media only screen and (max-width: 820px) {

    .bar {
        width: 0;
        display: none;
    }

    .main-content {
        flex-grow: 2;
    }
    .credits, .contact, .faq-item, .main-content p {
        width: 100%
    }
}