@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

@media (max-width: 768px) {
	body {
		font-size: 16px;
	}
}

body {
	font-family: "Zalando Sans SemiExpanded", sans-serif;
	font-size: 19px;
	font-style: normal;
	cursor: none;
}

/* Inner cursor */
#cursor-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.05s ease-out;
}

/* Outer cursor */
#cursor-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid black;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: transform 0.1s ease-out, width 0.2s ease, height 0.2s ease;
}

a:hover ~ #cursor-outer {
    width: 60px;
    height: 60px;
}

.active {
    color: black !important;
    font-weight: bold !important;
    text-decoration: underline !important;
}

.paragraf {
	font-family: "Ubuntu", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.navbarrr {
	 text-decoration: none;
	 color: grey;
}

.navbarrr:hover,
.text-muted:hover {
	text-decoration: underline !important;
	color: black !important;

}





