* {
    font-family: 'Avenir', sans-serif;
    font-weight: normal;
    box-sizing: border-box;
}

body {
    background-color: #fafafa;
}

h1 {
    /*letter-spacing: 1px;*/
}

.center {
    text-align: center
}
.row.title_row {
    text-align: center
}

button {
    cursor: pointer;
    font-size: 16px;
    color: #fafafa;
    /*background-color: #fafafa;*/
    word-spacing: 1.5px;
    background-color: #616161;
    color: white;
    border: 1px solid transparent;
    border-radius: 6px;

    padding: 0.75em;
    margin: 1em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    outline: none;
}

/* Text buttons
*/
.text_button {
    letter-spacing: 1.5px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.text_button:hover {
    border-bottom: 1px solid #c0c0c0;
}
.text_button.selected {
    border-bottom: 1px solid black;
}
/* */

.primary_button {
    background-color: #5a4caf;
}

a {
    color: black;
}

.hidden {
    display: none;
}
.template, .templates {
    display: none;
}
@media only screen and (max-width: 800px) {
    button {
        padding: 0.6em;
        margin: 0.4em;
        font-size: 16px;
    }
    h1 {
        font-size: 1.5em;
    }
}