* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius:0; 
    border-radius:0;
}
body {
    background: #222222;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
}
.flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    min-height: 90vh;
    text-align: center;
}
.results {
    max-width: 100%;
    margin-bottom: 4vh;
}
.button-group {
    padding: 0 2rem;
}
.button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1000;
    background: red;
    border: 0 none;
    box-shadow: 0 3px 7px rgba(0,0,0,.35);
    border-radius: 3px;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    line-height: 1;
    outline: none;
    transition: all 200ms ease-in-out;
    cursor: pointer;
    margin-bottom: 4vh;
    width: 100%;
    touch-action: manipulation;
}
.button-concept {
    background: #e0392f;
}
.button-adjective {
    background: #ffffff;
    color: #222222;
}
.button-object {
    background: #2d80ff;
}
.button:hover {
    
}
.button:active {
    transform: translateY(2px);
}

[id*="result"] {
    font-family: 'Nunito Sans', sans-serif;
    color: #ffffff;
    margin-bottom: .75rem;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 100;
}
#concept-result {
    color: #FF7E77;
}
#object-result {
    color: #6DA7FF;
    margin-right: 0px;
}
.history {
    background: #000;
    text-align: center;
}
.history__title {
    width: 100%;
    min-height: 10vh;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}
.history h2 {
    padding: 1rem;
    font-size: 2rem;
    letter-spacing: 2px;
}
#history__list {
    padding: 2rem; 
}
.history__list__name {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.history__list__name span {
    position: relative;
}

@media screen and (min-width:768px) {
    .button {
        margin-right: 10px;
    }
    .button:last-child {
        margin-right: 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) {
    .results {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    [id*="result"] {
        font-size: 4rem;
        margin-right: 2rem;
        margin-bottom: 2rem;
    }
    #history__list {
        -webkit-columns: 3;
        columns: 3;
    }
}

.freebirdFormviewerViewFormContent {
    background: #222222;
}