@font-face {
    font-family: 'Custom';
    src:  url('/fonts/custom.woff2') format('woff2'),
        url('/fonts/custom.woff') format('woff');
    color: #db7001;
}

@font-face {
    font-family: 'Custom-Bold';
    src:  url('/fonts/custom-bold.woff2') format('woff2'),
        url('/fonts/custom-bold.woff') format('woff');
    color: #db7001;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Custom-Bold", Roboto, "Segoe UI", "-apple-system", Arial, Helvetica, sans-serif;
    color: #db7001;
    font-weight: 100;
    
}

main {
    padding: 20px;
    background-color: #333;
    height: 100vh;
}

p {
    color: #fafafa;
    font-size: 1em;
}

li {
    color: #272727;
    line-height: 1.5em;
	font-size: 1.2em;
}

a {
    text-decoration: none;
}

a:link, a:visited, a:hover, a:active { color: #333333; }
a:hover {
    border-bottom: 2px solid #333333;
}