body {
    font-family: Arial, sans-serif;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    background-color: #333;
    color: #fff;
}

.container {
    margin: 0 auto;
    max-width: 800px;
    padding: 1em;
}

.logo {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0.5em 0;
    position: fixed;
    top: 40px;
    width: 100%;
    height: 25px;
	font-size: 36pt;
    z-index: 1000;
}

.popuplogo {
    background-color: #333;
    color: #fff;
    text-align: center;
    top: 0px;
    width: 100%;
    height: 25px;
	font-size: 36pt;
    z-index: 1;
}


a {
    color: #f2f2f2;
    text-decoration: none;
	font-size: 13.333px;
	
}

a:hover {
    background-color: #ddd;
    color: black;
	font-size: 13.333px;
}

a:visited {
    color: #f2f2f2;
	font-size: 13.333px;
}

.footer {
    background-color: #222;
    color: #bbb;
    text-align: center;
    padding: 0.5em 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer a, .navbar a {
    color: #bbb;
    margin: 0 1em;
    text-decoration: none;
}

.copyright {
    background-color: #222;
    color: #bbb;
    text-align: center;
    padding: 0.5em 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.navbar {
    background-color: #222;
    color: #bbb;
    text-align: left;
    padding: 0.5em 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar a, .footer a {
    float: none;
    display: inline-block;
    color: #f2f2f2;
    text-align: left;
    padding: 7px 8px;
}

.navbar a:hover, .footer a:hover {
    background-color: #ddd;
    color: black;
}

.divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.small_divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.content {
    font-size: calc(3px + 1vw);
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 80vw;
    padding: 20px;
}

.blubb {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.blubb li {
    display: inline-block; 
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    font-size: 10pt;
    transition: box-shadow 0.3s ease;
}

.blubb li:hover {
    border: 1px solid rgba(138, 43, 226, 0.6);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}


/* Cookie Banner CSS */
   /* Cookie-Popup-Design */
        #cookie-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background-color: #333;
            z-index: 1001;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(128, 0, 128, 0.5);
        }

        #cookie-popup button {
            padding: 10px 15px;
            margin-top: 10px;
            border-width: 1px;
			border-style: groove;
			background-color: #333;
            color: #fff;
            cursor: pointer;
            border-radius: 5px;
        }
		#cookie-popup button:hover {
            padding: 10px 15px;
            margin-top: 10px;
			border-width: 1px;
			border-style: groove;
			background-color: #fff;
            color: #333;
            cursor: pointer;
            border-radius: 5px;
        }
        #cookie-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.99);
            z-index: 1000;
        }
/* End of Cookie Banner CSS */

@media (max-width: 600px) {
    .container {
        padding: 0.5em;
    }

    .footer {
        position: static;
    }

    .footer a, .navbar a {
        display: block;
        margin: 0.5em 0;
    }

    .footer a:hover {
        background-color: unset;
        color: unset;
    }

    .navbar a:hover {
        background-color: unset;
        color: unset;
    }

    .navbar {
        color: #fff;
        text-align: center;
        padding: 0.5em 0;
        position: relative;
        top: 0;
        width: 30%;
    }

    .logo {
        background-color: transparent;
        color: #fff;
        position: relative;
        width: 0;
        height: 0px;
        left: 0vh;
        top: 11vh;
        width: 10vw;
        height: 0vh;
    }
}
