main {
    display: grid;
    grid-template-columns: 300px 1200px;
    grid-template-areas: 
        "sidebar game";
}

.sidebar {
    grid-area: sidebar;
    border-right: 1px solid #f8f0d3;
}

.game {
    grid-area: game;
}

.hoardImage {
    height: 400px;
    border-bottom: 1px solid #f8f0d3;
    background-image: url(/static/images/drawing.svg);
    background-size: cover;
}

.goldDisplay {
    height: 125px;
    padding: 25px;
}

.goldDisplay p {
    text-align: center;
    font-size: 1.25rem;
    margin: 0;
}

#gold {
    color: #CDA71E;
    font-size: 2.5rem;
}

.storeButton {
    height: 45px;
    margin: 18px 0;
    border-top: 1px solid #06130d;
    border-bottom: 1px solid #06130d;
    font-size: 1.5rem;
    text-align: center;
    padding: 6px;
    background-color: #CDA71E;
    color: #06130d;
}

.storeButton:hover {
    background-color: lightgray;
}

.questsBar {
    height: 160px;
    border-bottom: 1px solid #f8f0d3;
    display: grid;
    grid-template-columns: repeat(10, 120px);
}

.quest {
    border-right: 1px solid #f8f0d3;
    height: 100%;
    width: 120px;
}

#quest10 {
    border-right: none;
}

.quest:hover {
    background-color: #CDA71E;
    color: #06130d;
}

.quest:hover > * {
    border-color: #06130d;
}

.quest:hover .progBar {
    background-color: #0d261a;
}

.quest p {
    margin: 0;
    text-align: center;
}

.questImage {
    display: block;
    height: 80px;
    width: 80px;
    border: 1px solid #f8f0d3;
    margin: 5px 0 0 20px;
}

.progContainer {
    width: 100px;
    height: 20px;
    border: 1px solid #f8f0d3;
    margin-left: 10px;
    margin-top: 10px;
}

.progBar {
    background-color: #CDA71E;
    width: 0%;
    height: 100%;
}

.minions {
    height: 466px;
    display: grid;
    grid-template-columns: repeat(5, 240px);
}

.minion {
    height: 100%;
    width: 240px;
    border-right: 1px solid #f8f0d3;
    padding: 5px;
}

#minionElementals {
    border-right: none;
}

.minion p {
    margin: 0;
    text-align: center;
}

.progContainerM {
    height: 20px;
    width: 220px;
    border: 1px solid #f8f0d3;
    margin-left: 4px;
}

.store {
    position: absolute;
    height: 626px;
    width: 1198px;
    top: 0px;
    display: grid;
    grid-template-columns: 800px 400px;
    background-image: url(/static/images/scales.png);
    background-size: 5%;
}

.storeMinions {
    border-right: 1px solid #f8f0d3;
}

.storeGridHeader {
    text-align: center;
    font-size: 1.5rem;
    margin: 10px 0 0 0;
    height: 30px;
}

.storeMinionsGrid {
    display: grid;
    grid-template-columns: repeat(4, 190px);
    margin: 10px 0 0 20px;
}

.storeMinionsItem, .storeUpgradesItem {
    border: 1px solid #f8f0d3;
    height: 130px;
    margin: 5px;
}

.storeMinionsItem:hover, .storeUpgradesItem:hover {
    background-color: #CDA71E;
    color: #06130d;
}

.storeMinionsItem:hover .price {
    color: #06130d;
}

.storeMinionsItem > div {
    width: 100%;
    height: 50px;
}

.storeMinionsDetails {
    margin: 5px 0 0 5px;
    width: 50%;
    float: left;
    font-size: 1.25rem;
}

.storeMinionsHeader {
    margin: 0
}

.storeMinionsHeader p {
    margin: 0
}

.storeMinionsCost {
    margin: 0 0 0 5px;
    font-size: 1rem;
    color: #CDA71E;
}

.storeMinionsCost p {
    margin: 0
}

#storeKoboldImage {
    background-image: url(/static/images/kobold-icon.png);
}

#storeBanditImage {
    background-image: url(/static/images/bandit-icon.png);
}

#storeCultistImage {
    background-image: url(/static/images/cultist-icon.png);
}

#storeDragonbornImage {
    background-image: url(/static/images/dragonborn-icon.png);
}

#storeElementalImage {
    background-image: url(/static/images/elemental-icon.png);
}

.price {
    color: #CDA71E;
    font-size: 1rem;
}

.locked .price {
    color: gray;
}

.locked:hover {
    opacity: 0.5;
    background-color: lightgray;
    color: gray;
}

.locked:hover .price {
    color: gray;
}

.storeMinionsImage {
    height: 40px;
    width: 40px;
    float: right;
    border: 1px solid #f8f0d3;
    margin: 10px 10px 0 0 ;
}

.storeMinionsBio {
    margin: 5px;
    font-size: 0.85rem;
}

.storeUpgradesGrid {
    display: grid;
    grid-template-columns: 190px 190px;
    margin: 10px 0 0 10px;
}

#userLogin {
    border: none;
}