#card{
    background-color: #e9e9e9;
    margin: auto;
    width: 80%;
}
.detail-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
}

.artist-title{
    background-color: #6b5e49;
    color: #e9e9e9;
    width: 100%;
    text-align: center;
    font-size: 72px;
    margin: 0;
}

.details-mini-title{
    font-family: "Nokora", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    text-align: center;
    background-color: #6b5e49;
    color: #e9e9e9;
    width: 100%;
}

#preferences{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}

.preference-mini-div{
    margin: 0 auto;
    width: 45%;
}

.details-preferences-divs{
    max-height: 400px;
    overflow-y: auto;
}

#commission-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.commission-details-div{
    display: flex
;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 10px auto;
}

#commission-option{
    cursor: pointer;
}

#place-order-button{
    text-decoration: none;
    padding: 5px;
    margin-top: 10px;
    border: solid 2px #0c0c0c;
    border-radius: 4px;
    font-size: 24px;
}

@media only screen and (max-width: 600px){
    .detail-div h2{
        font-size: 18px;
    }

    .detail-div h3{
        font-size: 16px;
    }
    
    #preferences{
        flex-direction: column;
    }

    .preference-mini-div{
        margin: 0 auto;
        width: 100%;
    }
}