@font-face {
    font-family: 'Kirsty';
    src: url('../fonts/kirstyrg.eot'); /* IE9 Compat Modes */
    src: url('../fonts/kirstyrg.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/kirstyrg.woff') format('woff'), /* Pretty Modern Browsers */
         url('../fonts/kirstyrg.ttf') format('truetype') /* Safari, Android, iOS */
}
* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius:0;
    border-radius:0;
}
body {
    background: #2d2525;
    color: #ada2a2;
    font-family: "Crimson Text", serif;
    font-weight: 500;
    margin: 0;
}
.container {
    background: url("../img/blades.jpg") #0d0e13 center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    min-height: 90vh;
    width: 100%;
    max-width: 1440px;
    text-align: center;
    font-family: 'Kirsty', serif;
    position: relative;
    z-index: 1;
    box-shadow: 0px 30px 100px 10px rgba(0,0,0,.35), 0px 10px 50px 0px rgba(0,0,0,.5);
}
  .container::after {
    content: '';
    background: linear-gradient(to bottom, rgba(0, 0, 10, 0.5) 0%, rgba(125, 0, 0, 0.4) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}
.button-group {
    padding: 0 2rem;
}
.button {
    position: relative;
    z-index: 1000;
    background: #d42703;
    border: 0 none;
    color: #fdfbfa;
    padding: 1rem 2rem 1rem;
    font-family: "Crimson Text", serif;
    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: #d42703;
}
.button:active {
    background: #d42703;
    transform: translateY(2px);
}
#placeholder {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: calc(1vw + 1rem);
    font-weight: 500;
    line-height: 1.2;
    padding: 0 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    z-index: 100;
}
#result {
    font-weight: 500;
}
.history {
    background: #251e1e;
    text-align: center;
}
.history__title {
    width: 100%;
    min-height: 10vh;
    border-bottom: 1px solid #171313;
    display: flex;
    justify-content: center;
    align-items: center;
}
.history h2 {
    color: #ada2a2;
    font-family: "Kirsty","Crimson Text", serif;
    font-weight: normal;
    padding: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}
#history__list {
    padding: 2rem;
}
.history__list__name {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.history__list__name span {
    position: relative;
}

@media screen and (min-width:768px) {
    .flex-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    .container {
        border-radius: 0 0 15px 15px;
    }
    .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;
    }
    #placeholder {
        font-size: calc(1vw + 1.25rem);
    }
}
@media screen and (min-width:1024px) {
    .flex-wrap {
        padding: 0 2rem 2rem;
    }
    #history__list {
        -webkit-columns: 3;
        columns: 3;
    }
}
@media screen and (min-width:1440px) {
    #placeholder {
        margin-bottom: 2rem;
    }
    #history__list {
        -webkit-columns: 4;
        columns: 4;
    }
}



