* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius:0; 
    border-radius:0;
}
body {
    background: #070898;
    color: #ffffff;
    font-family: 'Press Start 2P', monospace;
    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: #0b0bdb;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 0px #020242; 
    color: #fff;
    padding: 14px 36px 12px;
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 3px 0px #020242;
    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: #1919ff;
}
.button:active {
    transform: translateY(2px);
}
#placeholder {
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 6px 0px #020242;
    line-height: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    z-index: 100;
}
.history {
    background: #070783;
    text-align: center;
}
.history__title {
    width: 100%;
    min-height: 10vh;
    background: #050572;
    display: flex;
    justify-content: center;
    align-items: center;
}
.history h2 {
    padding: 1rem;
    font-size: .825rem;
    text-transform: uppercase;
    text-shadow: 0 3px 0px #020242;
    letter-spacing: 2px;
}
#history__list {
    padding: 2rem; 
}
.history__list__name {
    margin-bottom: 1rem;
    font-size: .825rem;
    text-shadow: 0 3px 0px #020242;
}
.history__list__name span {
    position: relative;
}

@media screen and (min-width:768px) {
    .button {
        width: auto;
        margin-bottom: 0px;
        border-radius: 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) {
    #history__list {
        -webkit-columns: 3;
        columns: 3;
    }
}
@media screen and (min-width:1440px) {
    #history__list {
        -webkit-columns: 4;
        columns: 4;
    }
}