@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');

.footer {
    position: relative;
    /* background-color: #111; */
    /* background:
        radial-gradient(ellipse 200% 600% at top left, #333 0%, transparent 20%),
        radial-gradient(ellipse 100% 600% at bottom right, #333 0%, transparent 30%),
        linear-gradient(45deg, #111 0%, #111 100%); */
    background-color: black;
    color: #fff;
    text-align: center;
    padding: var(--padding-l) 0;
    padding-top: var(--padding-xl);
    font-size: var(--font-m);
    /* background-image: url(../media/logo.svg); */
    /* background-repeat: no-repeat; */
    /* background-size: 80%; */
    /* background-position: center; */
    z-index: 1;
    
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20 !important;
}


.footer p {
    font-size: var(--font-xl);
    margin: var(--margin-s) 0;
    margin-bottom: var(--margin-l);
    line-height: 1.5;
    z-index: 20;
    /* font-family: "Fredericka the Great", serif; */
    /* font-weight: 00; */
    /* font-style: normal; */
}

.footer a {
    /* display: inline-block; */
    position: relative;
    color: lightblue;
    font-weight: bolder;
    /* translate: 0% 25%; */
    /* background-color: chocolate; */
    height: min-content;
    padding-bottom: var(--padding-s);
    margin-bottom: var(--margin-l);
}

.footer a p {
    line-height: 1;
    margin: 0;
}

.footer a span {
    height: min-content;
    position: relative;
}

.footer mark {
    background-color: transparent;
    display: inline-block;
}

.footer:hover mark.heart {
    animation: heart-beat 2s ease-in-out infinite;
}

.footer:hover mark.coffee {
    animation: coffee-spin 3s ease-in-out infinite;
}

@keyframes heart-beat {
    0% { transform: scale(1); }
    20% { transform: scale(1); }
    40% { transform: scale(.9); }
    50% { transform: scale(1.5);}
    60% { transform: scale(.9);}
    70% { transform: scale(1);}
    100% { transform: scale(1); }
}

@keyframes coffee-spin {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(0deg); }
    30% { transform: rotate(-30deg); }
    60% { transform: rotate(390deg);}
    80% { transform: rotate(340deg);}
    95% { transform: rotate(362deg);}
    100% { transform: rotate(360deg); }
}

/* .footer p a::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    bottom: 0px;
    left: 0;
    background-color: red;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
    z-index: 100;
} */

