* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius:0;
    border-radius:0;
}
body {
    background: #000000;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
.flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 90vh;
    text-align: center;
}
.container {
    max-width: 100%;
}
.button-group {
    padding: 0 2rem;
}
.button {
    position: relative;
    z-index: 1000;
    background: #8df3ff;
    border: 0 none;
    color: #000000;
    padding: 1.4rem 2rem 1rem;
    font-family: 'Special Elite', sans-serif;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
    border-radius: 3px;
    outline: none;
    transition: all 200ms ease-in-out;
    cursor: pointer;
    margin-bottom: 4vh;
    width: 100%;
    touch-action: manipulation;
}
.button:hover {
    background: #46c0ce;
}
.button:active {
    background: #46c0ce;
    transform: translateY(2px);
}
.credit {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.25);
    z-index: 100;
    transition: all 200ms ease-in-out;
}
.credit:hover {
    color:  #ffffff;
}
#placeholder {
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    z-index: 100;
}
.history {
    background: #222;
    text-align: center;
}
.history__title {
    width: 100%;
    min-height: 10vh;
    border-bottom: 1px solid #111;
    display: flex;
    justify-content: center;
    align-items: center;
}
.history h2 {
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 20px;
}
#history__list {
    padding: 2rem;
}
.history__list__name {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: 'Special Elite', sans-serif;
}
.history__list__name span {
    position: relative;
}

@media screen and (min-width:768px) {
    .button {
        width: auto;
        margin-bottom: 0px;
    }
    .button-group {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px;
    }
    #history__list {
        -webkit-columns: 2;
        columns: 2;
    }
}
@media screen and (min-width:1024px) {
    #placeholder {
        font-size: 6rem;
    }
    #history__list {
        -webkit-columns: 3;
        columns: 3;
    }
}
@media screen and (min-width:1440px) {
    #placeholder {
        color: #ffffff;
        margin-bottom: 2rem;
        font-size: 7rem;
        line-height: 1;
    }
    #history__list {
        -webkit-columns: 4;
        columns: 4;
    }
}



