#main-box {
    margin-top: 50px;
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#decks-list {
    width: auto;
    height: auto;
    border: 5px solid green;
}

#prev-page {
    position:relative;
    left:0;
    top:0;
    background-color: #f1f1f1;
    color: black;
    height: 60px;
    width: 60px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.border-bottom {
    border-bottom: 5px solid green;
}

#next-page {
    position:relative;
    right:0;
    top:0;
    background-color: #f1f1f1;
    color: black;
    height: 60px;
    width: 60px;
}

.round {
    border-radius: 50%;
}

.preview-image {
    width: 120px;
    height: 168px;
}

.deck-item-grid {
    width: 400px;
    height: auto;
    display: grid;
    grid-template-columns: 280px 120px;
    grid-template-areas:
    "deck-name warlord-card"
    "warlord-name warlord-card"
    "date warlord-card";
}

.decklist-name {
    grid-area: deck-name;
}

.warlord-name {
    grid-area: warlord-name;
}

.date {
    grid-area: date;
}

.preview-image {
    grid-area: warlord-card;
}