@font-face {
    font-family: CampGranadaNF;
    src: url('../fonts/CampGranadaNF.ttf') format('truetype'),
        url('../fonts/CampGranadaNF.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: TravelingTypewriter;
    src: url('../fonts/TravelingTypewriter.ttf') format('truetype');
    font-display: swap;
}

html,
body,
.cover,
.background {
    height: 100%;
}

body {
    color: white;
    font-family: TravelingTypewriter, "Lucida Sans Typewriter", "Courier New", monospace;
    letter-spacing: 1px;
}

h2, h3 {
    margin: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.cover {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.background {
    width: 100%;
    background: url('../images/bg.webp') center center no-repeat;
    background-size: cover;
    animation: zoom 5s ease-in-out infinite;
}

@keyframes zoom {
    0% {transform: scale(1, 1);}
    50% {transform: scale(1.5, 1.5);}
    100% {transform: scale(1, 1);}
}

.cover-text {
    position: absolute;
    display: none;
    font-family: CampGranadaNF;
    letter-spacing: 1rem;
}

.to-blog {
    color: #fff;
    border: solid 3px #fff;
}

.to-blog:hover {
    background-color: #fff;
}

.quotes {
    overflow: hidden;
    padding: 3rem;
    box-shadow: inset 0 0 100px #000;
    background: url('../images/grass.webp');
    background-size: contain;
    border-top: solid 3px #fff;
    border-bottom: solid 3px #fff;
    text-shadow: -1px -1px 1px #000, 1px 1px 1px #000;
}

blockquote {
    margin: 0;
    padding: 3rem;
    background: url('../images/green-paper.webp');
    background-size: contain;
    box-shadow: inset 2px 2px 50px #000, inset -2px -2px 50px #000;
    border: solid 3px #fff;
    border-radius: 3rem;
    font-style: italic;
}

.blockquote-footer {
    margin-top: 1rem;
    color: white;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
}

.slidein-from-left {
    position: relative;
    left: calc(-100% - 3rem);
    margin-bottom: 3rem;
}

.slidein-from-right {
    position: relative;
    left: calc(100% + 3rem);
}

.blog {
    padding-top: 1rem;
    box-shadow: inset 0 0 100px #000;
    background: url('../images/dirt.webp') top left repeat;
}

.row.content {
    margin-top: 1rem;
}

.panel-heading {
    padding: 1rem;
    background: url('../images/green-paper.webp');
    background-size: contain;
    box-shadow: inset 2px 2px 20px #000, inset -2px -2px 20px #000;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.panel-body {
    padding: 3rem;
    color: #000;
    box-shadow: inset 2px 2px 20px #000, inset -2px -2px 20px #000;
    background: url('../images/white-paper.webp');
}

.btn-group,
#single-button,
.dropdown-menu {
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    background: url('../images/white-paper.webp');
    white-space: normal;
}

.dropdown-menu li {
    border-bottom: solid 1px black;
}

.dropdown-menu li:last-child {
    border: none;
}

.dropdown-menu li a {
    white-space: normal;
}

.badge {
    background: url('../images/white-paper.webp');
    color: #000;
    border: solid 2px #000;
    font-size: 1rem;
    margin-left: 0.25rem;
    vertical-align: top;
}

.created-date {
    border-bottom: solid 1px #000;
}

figure {
    margin-top: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
}

.map {
    float: left;
    margin-right: 1rem;
}

.img1 {
    float: right;
    margin-left: 1rem;
}

.description {
    white-space: pre-line;
}

.img2 {
    width: 252px;
    height: auto;
    margin: 1rem auto;
}

.map,
.social {
    transition: all .2s ease-in-out;
}

.map:hover {
    cursor: pointer;
    transform: scale(1.02);
}

.collapse-link {
    color: #000;
    font-weight: bold;
}

.collapse-link:hover,
.star {
    color: #52801b;
}

.collapse-link:hover {
    text-decoration: none;
    cursor: pointer;
}

.about {
    top: 1rem;
    margin-bottom: 1rem;
}

.about-img {
    margin: 0 auto 1rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
}

.socials {
    width: 50%;
    margin: 0 auto;
}

.social {
    font-size: 1.5em;
}

.socials:hover .social {
    opacity: 0.5;
}

.socials .social:hover {
    opacity: 1;
}

.bi-linkedin {
    color: #0072b1;
}

.bi-github {
    color: #171515;
}

.bi-youtube {
    color: #c4302b;
}

.social:hover {
    font-size: 1.6em;
}

.to-blog:active,
.map:active,
.collapse-link:active,
.social:active {
    position: relative;
    top: 1px;
}