body {
    width: 90%;
    display: flex;
    flex-flow: column nowrap;
    margin: auto;
}

.proj_main {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.proj_title {
    text-align: center;
}

.proj_title p {
    margin-top: 0px;
}

.proj_content {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.enter {
    width: 95%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.scoreWrapper {
    margin-top: 20px;
    width: 50%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    border-color: navy;
    border-style: solid;
    border-width: 1px;
}

.headings {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
}

.headings div {
    width: 25%;
    height: 50px;
    border-color: lightgrey;
    border-style: solid;
    border-width: 1px;
    background-color: navy;
    color: lightgrey;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.content {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    border-color: navy;
}

.content div {
    width: 25%;
    height: 50px;
    border-color: navy;
    border-left-style: solid;
    border-right-style: solid;
    border-left-width: 1px;
    border-right-width: 1px;
    background-color: lightgrey;
    color: navy;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

#answers {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

#answers div {
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-flow: row nowrap;
    align-self: flex-start;
}

@media screen and (max-width: 768px) and (min-width: 480px) {
    body {
        width: 95%;
    }

    .scoreWrapper {
        width: 75%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        border-color: navy;
        border-style: solid;
        border-width: 1px;
    }

    .headings {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
    }

    .headings div {
        width: 25%;
        height: 50px;
        border-color: lightgrey;
        border-style: solid;
        border-width: 1px;
        background-color: navy;
        color: lightgrey;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center;
    }

    .content {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        border-color: navy;
    }

    .content div {
        width: 25%;
        height: 50px;
        border-color: navy;
        border-left-style: solid;
        border-right-style: solid;
        border-left-width: 1px;
        border-right-width: 1px;
        background-color: lightgrey;
        color: navy;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 479px) {
    body {
        width: 95%;
    }

    .scoreWrapper {
        width: 90%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        border-color: navy;
        border-style: solid;
        border-width: 1px;
    }

    .headings {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
    }

    .headings div {
        width: 25%;
        height: 50px;
        border-color: lightgrey;
        border-style: solid;
        border-width: 1px;
        background-color: navy;
        color: lightgrey;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center;
    }

    .content {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        border-color: navy;
    }

    .content div {
        width: 25%;
        height: 50px;
        border-color: navy;
        border-left-style: solid;
        border-right-style: solid;
        border-left-width: 1px;
        border-right-width: 1px;
        background-color: lightgrey;
        color: navy;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center;
    }
}
