/*
 * Normalize.css: https://github.com/necolas/normalize.css/
 */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/*
 * Main styles
 */
html {
    height: 100%;
    background: #fff;
    color: #000;
    font-size: 14px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    --color-grey: #999;
}

body {
    height: 100%;
}

.wrap {
    width: 600px;
    max-width: 90vw;
    margin-left: 40px;
}

.container {
    min-height: 100%;
    margin-bottom: -80px;
}

.container:after {
    content: '';
    display: block;
    width: 100%;
    height: 80px;
}

.header {
    padding: 40px 0 40px 0;
    color: var(--color-grey);
}

.main {
    padding-top: 60px;
}

.main > *:first-child {
    margin-top: 0;
}

a {
    text-decoration: underline;
    color: currentColor;
    transition: all 0.1s ease;
}

a:hover {
    text-decoration-color: transparent;
}

.h1 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Secular One', sans-serif;
    margin: 1em 0 0.5em 0;
}

.h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Secular One', sans-serif;
    margin: 2em 0 0.5em 0;
}

.footer {
    color: var(--color-grey);
    height: 80px;
    box-sizing: border-box;
    padding: 20px 0 0 0;
}

.footer a {
    display: inline-block;
    vertical-align: top;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-sizing: border-box;
    margin-right: 6px;
    transition: all 0.2s ease;
    background: #fff;
}

a.github svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: #000;
    transition: inherit;
}

a.github:hover svg {
    fill: var(--color-grey);
}

a.email {
    background: #000;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 26px;
}

a.email:hover {
    background: var(--color-grey);
}

.lists {
    margin-bottom: 50px;
    min-height: 300px;
    position: relative;
}

.lists > div {
    padding-right: 40px;
    box-sizing: border-box;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list li {
    display: block;
    margin: 0.5em 0;
}

p {
    color: var(--color-grey);
    margin: 1em 0;
}


@media (max-width: 767px) {

    .wrap {
        width: auto;
        margin: 0 20px;
    }

    .main {
        padding-top: 40px;
    }

    .h1 {
        font-size: 32px;
    }

    .h2 {
        font-size: 24px;
        margin: 2em 0 1em 0;
    }

    .lists {
        display: block;
    }

    .lists > div {
        padding: 0;
        width: 100%;
    }

    .list li {
        margin: 0.75em 0;
    }
}

.load-container {
    position: relative;
}

.load-container ._is-loaded ~ .lds-spinner {
    display: none;
}


/*
 * Spinner: https://loading.io/css/
 */
.lds-spinner {
    color: #000;
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    left: 0;
    top: 40px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: currentColor;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.table {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 0;
}

.table th,
.table td {
    border: 0;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
    width: 25%;
    text-align: left;
    font-weight: normal;
}

.table th {
    font-size: 12px;
    color: var(--color-grey);
    padding-bottom: 10px;
    padding-top: 0;
}

table td span {
    font-size: 12px;
}

.table th:first-child,
.table td:first-child {
    width: 50%;
}
