html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

.footer-subtitle {
    font-size: 23px;
}

.custom-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    display: inline-block;
}

.custom-link:hover {
    transform: scale(1.05);
}

.sticky-top {
    position: sticky;
    border-radius: 12px;
    margin-top: 20px;
    margin-left: 5%;
    margin-right: 5%;
    z-index: 1000;
}

.icon {
    border-radius: 5px;
}

.logo {
    border-radius: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f1f1f1;
    padding: 1rem 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-width: 300px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    display: inline-block;
    margin-top: 0.5rem;
}

.accept-cookies-button {
    margin-top: 0.75rem;
    padding: 0.4rem 0.8rem;
    background-color: #007bff;
    text-align: center;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.accept-cookies-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
}