@font-face {
    font-family: "Campton";
    src: url("campton-light-webfont.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Campton";
    src: url("campton-medium-webfont.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Campton";
    src: url("campton-semibold-webfont.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Campton Book";
    src: url("campton-book-webfont.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
}

/*
	+-----------------------------------------+
	| 					Default			  	  |
	+-----------------------------------------+
*/

html {
    font-family: sans-serif;
    line-height: 1.15;
}
body {
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

*, *:before, *:after {
    box-sizing: border-box;
}
hr {
    box-sizing: content-box;
    background-color: #fff;
    color: #000;
    height: 1px;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}
a:active, a:hover {
    outline-width: 0
}
a, a:hover, a:active, a:visited, a:focus {
    color: inherit;
    text-decoration: none;
}

strong, b {
    font-weight: 700;
}

p {
    margin-top: 0;
}
p:last-of-type {
    margin-bottom: 0;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
    border: 0;
}
svg:not(:root) {
    overflow: hidden
}

ul, ol {
    margin: 15px 0 20px 20px;
    padding-left: 0;
    list-style-type: "- ";
}
ul li ul, ul li ol, ol li ol, ol li ul {
    margin: 3px 0 3px 18px;
}
ul li {
    margin-bottom: 10px;
    position: relative;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    text-align: left;
}
/*li::before {
    content: "\25CF";
    position: absolute;
    color: #000;
    font-size: 12px;
    top: -2px;
    left: -19px;
}

/*
275a -- heavy vertical bar
● -- 25CF -- BLACK CIRCLE
● -- 26AB -- MEDIUM BLACK CIRCLE
● -- 2022 -- SMALL BLACK CIRCLE
 
▶ -- 25B6 -- BLACK RIGHT-POINTING TRIANGLE
■ -- 25A0 -- BLACK SQUARE
■ -- 25AA -- BLACK LITTLE SQUARE
 
← -- 2190 -- Left arrow
→ -- 2192 -- Right arrow
↑ -- 2191 -- Up arrow
↓ -- 2193 -- Down arrow

› -- 203A -- Right single angle quote
‹ -- 2039 -- Left single angle quote
« -- 00AB -- Left double angle quote
» -- 00BB -- Right double angle quoter
*/

/*
	+-----------------------------------------+
	| 					Custom			  	  |
	+-----------------------------------------+
*/

body {
    max-width: 800px;
    font: 15px/1.3em "Campton", sans-serif;
    margin: 20px auto;
    box-shadow: 0px 0px 15px 3px #ccc;
}

#logo {
    display: block;
    width: fit-content;
    padding: 16px 31px;
}

#content, #footer {
    padding: 12px 6%;
}

h1, h2 {
    line-height: 1.1;
    font-weight: 400;
}

#title {
    font-size: 42px;
}
h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

#footer {
    background-color: #e9e6e0;
}
#infolist {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
#infolist > div {
    flex: 1 0 20%;
    min-width: 120px;
}
#applylink {
    flex: 1 0 66% !important;

    display: flex;
    justify-content: center;
    align-items: center;
}
#applylink > a {
    font-family: 'Campton Book', sans-serif;
    text-transform: uppercase;
    padding: 12px 32px;
    margin: 12px;
    background-size: 202% 100%;
    background-position: 100%;
    background-image: linear-gradient(to left, #f3ffaf 50%, #B1B1B1 50%);
    transition: background-position 600ms;
}
#applylink > a:hover {
    background-position: 0%;
}