@charset "utf-8";
/* CSS Document */
/* Import Cabin font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap');

/* Apply Cabin to the whole website */
body {
    font-family: 'Cabin', serif;
}


<head>
    <link href="https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap" rel="stylesheet">
    <style>
        body {
            font-family: 'Cabin', serif;
        }
    </style>
</head>


#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
}

#cookie-notice a {
    color: #00bfff;
    text-decoration: underline;
}

#accept-cookies {
    background: #00bfff;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s;
}

#accept-cookies:hover {
    background: #008ecc;
}
