h1 {
    text-align: center;
    font-size: var(--font-xl);
    white-space: pre;
    color: var(--font-color);
    text-shadow: 2px 5px 20px var(--glow-color), 1px 1px 2px var(--glow-color);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 40px;
    align-self: center;
    margin: 0px 0px 50px 0px;
}

.footer {
    position: fixed;
    width: 100%;
    height: 100px;
    bottom: 0px;
    left:   0px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 10;

    animation-name: footer-slide-in;
    animation-duration: 300ms;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

@keyframes footer-slide-in {
  from {bottom: -100px;}
  to {bottom: 30px;}
}

.card {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;

    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 var(--glow-color);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */
    background-color: var(--bg-color);
    width: 600px;
    height: 700px;
}

/* if backdrop support: very transparent and blurred */
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .backdrop-blur {
    /* From https://css.glass */
    background: var(--bg-form);
    border-radius: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-form);
  }
}

/*
 * This is a work around because Firefox as of Wed Mar 26 00:46:34 -03 2025 
 * does not handle backdrop-filter CSS property the same way as other brosers
 */
@supports ( -moz-appearance:none ){
  /* Add firefox specific CSS code here */
    .backdrop-blur {
        background: var(--bg-form-fallback);
    }
}

/* On mouse-over, add a deeper shadow */
.card:hover {
    box-shadow: 0 8px 16px 0 var(--glow-color);
}

.card a {
    display: block;
    margin: 20px auto;
    width: fit-content;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 3px;
}

/* Add some padding inside the card container */
.container {
    padding: 2px 16px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
}

/* Add rounded corners to the top left and the top right corner of the image */
.card img {
    display: block;
    max-width: 400px;
    margin: 10px auto;
    border-radius: 5px 5px 0 0;
}

.container h4 {
    text-align: center;
    font-size: var(--font-lg);
    padding: 20px 0px;
    color: var(--font-color);
    text-shadow: 2px 5px 20px var(--glow-color);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 25px;
}

.container p {
    max-height: 200px;
    overflow: scroll;
    overflow-x: hidden;
    text-align: justify;
    text-justify: inter-word;
    padding: 10px;
    scrollbar-color: var(--bg-color) var(--bg-form);
    scrollbar-width: thin;
    font-size: var(--font-lg);
}

.carousel-arrow {
    fill: var(--glow-color-text-hover);
    stroke: var(--glow-color);
    stroke-width: 20px;
    color: var(--font-color);
    position: absolute;
    cursor: pointer;
    padding: 0.35em 1em;
    background: none;
    perspective: 2em;
    font-family: "Raleway", sans-serif;
    font-size: var(--font-lg);
    font-weight: 900;
    letter-spacing: var(--font-sm);
    transition: 0.3s;
    text-shadow: 2px 5px 20px var(--glow-color), 3px 3px 4px var(--glow-color);
    filter: drop-shadow(2px 55px 15px var(--glow-color));
}

.arrow-right {
    top: 50%;
    right: 0px;
    z-index: 10;
}

.arrow-left {
    top: 50%;
    left: 0px;
    z-index: 10;
}

.carousel-arrow:hover {
    fill: var(--glow-color);
    stroke: var(--glow-color);
    stroke-width: 20px;
    transform: scale(1.2);
    color: var(--font-color-btn-hover);
    filter: drop-shadow(2px 55px 10px var(--glow-color));
}

@media (hover: none) {
    /* We disable the hover effect here for mobile devices */
    .carousel-arrow {
        transform: scale(1);
    }
}

 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .arrow-right {
        top: 80%;
    }

    .arrow-left {
        top: 80%;
    }

    .container h4 {
        font-size: var(--font-xl);
        letter-spacing: 3px;
        line-height: 30px;
    }

    .card {
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-evenly;

        /* Add shadows to create the "card" effect */
        box-shadow: 0 4px 8px 0 var(--glow-color);
        transition: 0.3s;
        border-radius: 5px; /* 5px rounded corners */
        background-color: var(--bg-color);
        width: 600px;
        height: 1000px;
    }

    .container p {
        width: 80%;
        max-height: 400px;
        margin: auto;
        overflow-y: scroll;
        text-align: justify;
        text-justify: inter-word;
        padding: 10px;
        scrollbar-color: var(--bg-color) var(--bg-form);
        scrollbar-width: thin;
        font-size: var(--font-lg);
    }

    .card a {
        display: block;
        margin: 20px auto;
        width: fit-content;
        padding: 20px;
        font-size: var(--font-lg);
        text-align: center;
        text-decoration: none;
        letter-spacing: 3px;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
} 
