#helmet {
    position: absolute;
    top: 90px;
    left: 30px;
}

#ring {
    position: absolute;
    top: 70px;
}

#dirtblock {
    position: absolute;
    top: 160px;
    left: 60px;
}

#pencil {
    position: absolute;
    top: 270px;
    left: 70px;
}

#sackboy {
    position: absolute;
    top: 280px;
    left: 0px;
}

#mii {
    position: absolute;
    top: 140px;
    left: -15px;
}

#thelost {
    position: absolute;
    top: 190px;
    left: -15px;
}

.collapsible {
    background-color: var(--bg-colour);
    cursor: pointer;
    border: none;
    border-top: 1px var(--table-divider-colour) solid;
    text-align: left;
    width: 100%;
    outline: none;
    transition: background-color 0.2s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.collapsible h2, .collapsible h3 {
    transition: color 0.2s ease;
    margin: 0.25rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.active, .active h2, .active h3, .collapsible:hover {
    background-color: var(--table-nth-child-colour);
    color: var(--primary-colour);
}
.collapsible:hover h2, .collapsible:hover h3 {
    color: var(--primary-colour);
    transition: color 0.2s ease;
}
.blogpost {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.blogpost img {
    vertical-align: middle;
}
#firstpost {
    border-bottom: 1px var(--table-divider-colour) solid;
}
