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 {
    /*width: 100%;*/
    text-align: center;
}

.proj_title p {
    margin-top: 0px;
}

.proj_content {
    width: 95%;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
}

.dice-left {
    width: 50%;
    margin-top: 10px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}

form {
    display: flex;
    flex-flow: row wrap;
}

form > p {
    margin: 5px;
}

#d6input {
    width: 50px;
}
.twoButtonCont {
    display: flex;
    flex-flow: row wrap;
}

.twoButton {
    display: flex;
    flex-flow: row wrap;
}

#reassignBtn {
    display: none;
    justify-content: space-between;
}

.dieSelect {
    margin: 0;
}

.dieSelect:hover {
    background-color: lightgrey;
}

.dice-right {
    width: 50%;
    margin-top: 10px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

h4 {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) and (min-width: 480px) {
    .diceLeft {
        margin-bottom: 1em;
        width: 55%;
    }

    .diceRight {
        width: 45%;
    }
}

@media screen and (max-width: 479px) {
    body {
        width: 95%;
    }

    .proj_content {
        width: 100%;
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-around;
    }

    .dice-left {
        width: 100%;
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
    }

    .twoButtonCont {
        display: flex;
    }

    .dice-right {
        width: 100%;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
    }
}
