

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.btn-link {
    color: black;
    text-decoration: underline;
    display: block;
    padding: 0.5rem 1rem;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn-link {
        transition: none;
    }
}

.btn-link:hover, .btn-link:focus {
    color: #0a58ca;
}

content-section {
    margin-top: 1em;
}


.card-img-top {
    width: 100%;
    height: 50vw;
    object-fit: cover;
}

@media (min-width: 576px) {
    .card-img-top {
        width: 100%;
        height: 20vw;
        object-fit: cover;
    }
}

@media (min-width: 768px) {
    .card-img-top {
        width: 100%;
        height: 12vw;
        object-fit: cover;
    }
}

.card-img-top-media {
    width: 100%;
    height: 100vw;
    object-fit: scale-down;
}

@media (min-width: 576px) {
    .card-img-top-media {
        width: 100%;
        height: 20vw;
        object-fit: scale-down;
    }
}

@media (min-width: 768px) {
    .card-img-top-media {
        width: 100%;
        height: 24vw;
        object-fit: scale-down;
    }
}

#dateCard:hover {
    background-color: #14213d;
    color: white;
}
a.dateCardLink{
    text-decoration:none;
    color:black;
}
    a.dateCardLink:hover {
        text-decoration: underline;
        color: white;
    }

.cart-link {
    text-decoration:none;
}
    .cart-link:hover {
        text-decoration: underline;
    }

.quiz-link {
    text-decoration: none;
    font-size:1.25rem;
}
    .quiz-link:hover {
        text-decoration: underline;
    }

.left-padded-li {
    padding-left: 10px;
}

.no-decoration-ul {
    list-style: none;
}

#cookieConsent {
    padding-top: 100px;
}

#cookieConsentdiv {
    z-index: 1000;
    position: fixed;
    width: 400px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px 20px 30px;
    font-family: 'Century Gothic', sans-serif;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 30px 30px 0 0;
}

    #cookieConsentdiv button {
        display: block;
        margin-left: auto;
        margin-right: auto;
        border: none;
        background-color: green;
        padding: 10px 50px;
        margin-top: -5px;
        color: white;
        transition: all ease 0.5s;
    }

        #cookieConsentdiv button:hover {
            background-color: darkgreen;
        }

    #cookieConsentdiv h3 {
        font-size: 22px;
    }

    #cookieConsentdiv p {
        font-size: 13px;
    }

    #cookieConsentdiv a {
        color: gray;
        text-decoration: underline;
    }