/* general */
html {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    overflow-y: hidden;
}

@font-face {
    font-family: 'inconsolata';
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/web/inconsolata.woff2") format("woff2"), url("../fonts/inconsolata/inter.woff") format("woff");
}

body {
    background-color: rgba(23, 23, 23, 1.0);
    font-family: inconsolata, sans-serif;
    height: 100%;
    overflow: auto;
}

/* links */
a:focus {
    outline: none;
}

a.button {
    outline: none;
    padding-bottom: 7px;
    padding-top: 7px;
    text-decoration: none;
}

.link,
.link:link,
.link:visited {
    color: white !important;
    outline: none;
    text-decoration: none;
}

.link:hover {
    color: lightgray !important;
    cursor: pointer;
    text-decoration: none;
}

.link:active {
    color: gray !important;
    text-decoration: none;
}

/* title */
.title-container {
    color: white;
    height: 50%;
    left: 25%;
    margin: 0 auto;
    position: fixed;
    text-align: center;
    top: 25%;
    width: 50%;
}

.title {
    font-size: 7vw;
}

.subtitle {
    font-size: 5vw;
}
