@import "constants.css";
@import "fonts.css";


html, body {
    margin: 0;
    background: #eaddcf;
    font-family: 'Newsreader', sans-serif;
    font-weight: 300;
    font-size: 12pt;
    height: 100%;
    min-height: 100%;
    color: var(--text-color);
    line-height: 1.2em;
}

::selection {
    color: #fff;
    background: #000;
}

h1 {
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
}

a {
    color: var(--link-color);
    transition: color .4s;
}

a:hover {
    color: #000;
    transition: color .4s;
}

.card {
    display: inline-block;
    width: 80%;
    margin: 0 10% 30px 10%;
    user-select: none;
}

.card .title {
    display: inline-block;
    text-decoration: none;
    transition: color .7s;
    margin-bottom: 5px;
}

.card .content {
    font-size: .8em;
}