body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    transition: .5s;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

a {
    text-decoration: underline;
    color: black;
}

.content {
    width: 95vw;
    margin: auto;
}

.tier-section {
    margin-bottom: 20px;
}

.tier-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.tier-title {
    font-weight: bold;
    font-size: 18pt;
}

.tier {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border: 2px solid black;
    user-select: none;
}

.tier>div:not(:first-child) {
    border-top: 2px solid black;
}

.row>.rank {
    border-right: 2px solid black;
}

.row {
    display: flex;
}

.rank {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16pt;
    font-weight: bold;
    flex: 0 0 40px;
    padding: 30px;
}

.items {
    display: grid;
    grid-template-columns: repeat(auto-fill, 100px);
    flex: auto;
    min-height: 100px;
    background: #242424;
}

.item {
    display: block;
    width: 100px;
    max-width: 100px;
    height: 100px;
    max-height: 100px;
    user-select: none;
    object-fit: cover;
}

.S {
    background: #ff5755;
}

.A {
    background: #ffb852;
}

.B {
    background: #ffff5b;
}

.C {
    background: #62ff62;
}

.D {
    background: #54b8ff;
}

.F {
    background: #ff48ff;
}
