.scroll-left {
 overflow: hidden;
 position: relative;
}
.scroll-left p {
 width: 100%;
 height: 100%;
 text-align: center;

 /* Starting position */
 transform:translateX(100%);

 /* Apply animation to this element */
 animation: scroll-left 15s linear infinite;
}

/* Move it (define the animation) */
@keyframes scroll-left {
 0%   {
 transform: translateX(100%);
 }
 100% {
 transform: translateX(-100%);
 }
}

.sliding-header {
    font-family: 'Rubik Pixels', cursive;
    color: #ff8229;
    text-shadow: 0px 0px 0px #cadf0a;
}

.blur {
    filter: blur(148px);
    box-shadow: 0 0 0 118px rgb(217 103 20);
    -webkit-filter: blur(148px);
}

.nav-text {
    font-family: 'Heebo', sans-serif;
}

.dropdown-item:hover {
    background-color: #897161 !important;
}

.dropdown-text {
    font-size: 100px;
}

.welcome-text {
    font-family: 'Tilt Prism', cursive;
}

.welcome-text em {
    color: rgb(217 103 20);
    text-shadow: 2px 2px 9px #000000, 2px 2px 5px blue;
}

.post-welcome {
    font-family: 'Nova Oval', cursive;
}

.post-welcome a {
    text-decoration: none;
    background-color: rgb(217 103 20);
    color: #000000;
    border-radius: 10px;
}

/* .card {
    height: 200px !important;
} */

.card1 {
    display: block;
    position: relative;
    max-width: 262px;
    background-color: #f2f8f9;
    border-radius: 4px;
    /* padding: 32px 24px;
    margin: 12px; */
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
}

.card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    left: -16px;
    background: #000000;
    height: 32px;
    width: 34px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.card1:hover:before {
    transform: scale(21);
}

.card1:hover {
    transition: all 0.3s ease-out;
    color: #ffffff;
}