@import url('https://fonts.googleapis.com/css2?family=Grandstander:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap');

html {
	position: relative;
	min-height: 100%;
	font-size: 18px;
}

body {
	/* Padding top for navbar */
	padding-top: 44px;
	/* Margin bottom for footer height */
	margin-bottom: 60px;
	font-family: 'Grandstander', sans-serif;
}

body > *:not(header):not(footer):not(nav) {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

section {
	padding: 100px 0;
}

img {
	max-width: 124%;
	margin-left: -12%;
	border-radius: 12px;
}

pre, code {
	background: #f8f8f8;
	color: #333;
}

pre {
	border-left: 2px solid #ccc;
	padding: 10px;
}

code {
	display: inline-block;
	padding: 0 0.5em;
	line-height: 1.4em;
	border-radius: 3px;
}

table {
	empty-cells: show;
	border: 1px solid #cbcbcb;
	width: 100%;
	font-size: 0.9em;
	margin-bottom: 1rem;
}

thead {
	background-color: #e0e0e0;
	color: #000;
	text-align: left;
	vertical-align: bottom;
}

tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
}

th, td {
	padding: 0.5em 1em;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-family: 'Fuzzy Bubbles', sans-serif;
}

h1.title,
h2.title {
	font-size: 2.3rem;
}

blockquote {
        padding: 10px 20px;
        margin: 0 0 20px 20px;
        border-left: 5px solid #eee;
        font-style: italic;
}


/* Paginator */
.paginator {
	margin-top: 20px;
	margin-bottom: 80px;
}

/* Navbar */
.navbar {
    padding: 0 1rem;
    background-color: #005f56!important
}

img.nav-svg-icon {
	width: 1rem;
	height: 1rem;
	padding-bottom: 2px;
}

figcaption {
    font-style: italic;
    margin-top: 8px;
    text-align: center;
}

.nav-link {
	font-size: 0.8em;
}

/* Footer */
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 0.8em;
}

.mini-logo {
	height: 22px;
	padding-bottom: 5px;
}

/* Home - Header */
header.welcome {
	padding: 75px 0;
	background-color: #005f56!important;
	color: white;
}

header h1 {
    font-family: 'Cherry Bomb One', sans-serif;
    font-size: 2.8rem;
}

/* Home - Page */
section.home-page:nth-child(even) { /* Alternate the background color */
	background: #FAFAFA;
}

.page h1.title {
    margin-top: 30px;
}

.page-cover-image {
	background-size: cover;
	background-position: center;
	margin-top: 1.5rem;
}

/* VIDEO EMBED RESPONSIVE */
.video-embed {
	overflow:hidden;
	padding-bottom: 56.25%; /* 16:9 */
	position:relative;
	height:0;
}
.video-embed iframe{
	left:0;
	top:0;
	height:100%;
	width:100%;
	position:absolute;
}

iframe {
    width: 124%;
    height: 124%;
    margin-left: -12%;
    position: absolute;
}

/* CUSTOM */
a {
    color: #16af59;
}

a:hover {
    color: #005f56;
}

a.text-dark:focus, a.text-dark:hover {
    color: #005f56!important;
    text-decoration: none;
}

.btn-primary {
    background-color: #3dd07d;
    border-color: #3dd07d;
}

.btn-primary:hover {
    background-color: #52d58b;
    border-color: #52d58b;
}

@media screen and (max-width: 768px) {
    img {
        max-width: calc(100% + 30px);
        margin-left: -15px;
    }
    iframe {
        width: calc(100% + 30px);
        height: calc(100%+30px);
        margin-left: -15px;
    }
}