html,
body {
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: scroll-y;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
}

.border-partial {
    position: relative;
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    text-align: center;
    font-family: Niramit, Helvetica, Arial, Sans-Serif, serif;
    color: white;
}

.border-partial::before,
.border-partial::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 2px;
    background-color: white;
}

.border-partial::before {
    left: 0;
}

.border-partial::after {
    right: 0;
}

.trail-date {
    font-size: 4rem;
}

@media (max-width: 767.98px) { 
    .trail-date {
        font-size: 3rem;
    }
}
