@charset "UTF-8";
/* CSS Document */
main p, main li {
    font-size: 1.6rem;
}
main > * {
    margin: 20px 0;
}
abbr {
    text-decoration: none;
}
main .cards li {
    line-height: normal;
}
.hero {
	width: 100%;
	max-width: 1280px;
	margin: auto;
	position: relative;
}
.hero .photo, .hero .video {
	width: 100%;
}
.hero p {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	text-align: center;
	color: white;
	opacity: 50%;
	font-size: 30px;
}
@media (min-width: 600px) {
	.hero p {
		font-size: 50px;
	}
}

.cards {
    display: grid;
    list-style: none;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
    grid-gap: 1px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.cards {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 1rem;
	}
}
.cards >* {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
}
a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 3px black;
    text-decoration: none;
    position: relative;
    padding: 0 20px;
    font-size: 24px;
    height: 60px;
    transition: all .1s;
}

@media (min-width: 1024px) {
a.btn {
    font-size: 30px;
    height: 100px;
}
}

@media (min-width: 1280px) {
a.btn {
    font-size: 40px;
    height: 160px;
}
}
a.btn::after {
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: opacity .1s;
}
a.btn:hover::after, a.btn:active::after, a.btn:focus::after {
    opacity: .4;
}
a.btn:hover, a.btn:active, a.btn:focus {
    text-decoration: none;
    text-shadow: 0px 0px 50px white;
    color: #14213D !important;
}
details {
    display: none !important;
    height: 0px;
}
details:target {
    display: block !important;
    height: auto;
}
details.linklist summary {
}

