* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}
:root {
    --primary-color: #4891ff;
    --light-color: #f4f4f6;
    --dark-color: #111;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
}
a {
    text-decoration: none;
    color: #333333
}
ul {
    list-style: none;

}
img {
    max-width: 100%;

}
p {
    margin-bottom: 10px;
}
p a {
    text-decoration: underline;
    color: var(--primary-color);
}
.border {
    border: 3px solid #ddd;
}
/* navbar */
.navbar {
    background-color: var(--light-color);
    padding: 20px;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .main-menu ul {
    display: flex;
}
.navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.5s ease;
}
.navbar ul li a i {
    margin-right: 10px;
}
.navbar ul li a:hover {
    color: var(--primary-color);
}

.navbar .logo img {
    max-height: 30px;
}

/* hero */
.hero {
    margin-bottom: 50px 
}

.hero .container {
    background: ;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* utility classes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}
.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}
.btn {
    display: inline-block;
    padding: 13px 20px;
    background: var(--light -color);
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s ease;
}
btn:hover {
    opacity: 0.8;
}
.btn-primary {
    background: var(--primary-color);
    color: #fff;
}
.btn-dark {
    background: var(--dark-color);
    color: #fff;
}
.btn-block {
    display: block;
    width: 100%;
}
.text-xxl {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 40px 0 20px
}
.text-xl {
    font-size: 2.2rem;
    font-weight: normal;
    line-height: 1.4;
    margin: 40px 0 20px
}
.text-lg {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.4;
    margin: 30px 0 20px
}
.text-md {
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.4;
    margin: 20px 0 10px
}
.text-sm {
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.4;
    margin: 10px 0 5px
}
.text-center {
    text-align: center;
}   



.hamburger-button {
    display: none;
    font-size: 1.5rem;
    z-index: 1000;
    margin: 0px 0px 5px
}
.hamburger-close {
    display: none;
    font-size: 1.5rem;
    z-index: 1000;
    margin: 0px 0px 5px
}
/* mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    margin-top: 75px;
    right: -200px;
    width: 150px;
    height: 100%;
    background: var(--light-color);
    z-index: 100;
    box-shadow: 0px, opx, 10px rgba(0, 0, 0, 0.5);
    transition: right 0.5s ease-in-out;
}

.playground {
    position: relative
}

.playground .logo {
    margin: 0px;
    padding: 30px;
    font-size: 2rem;
    line-height: 1.05;
}
.buddah {
	display: flow-root; /** display:flow-root – float am Ende des Blocks beenden **/
}
.circled {
	shape-outside: circle();
	clip-path: circle();
	float: right;
}

/* Media Queries */
@media (max-width: 1400px) {
    .navbar .hamburger-button {
        display: none;
    }
    .navbar .hamburger-close {
        display: none;
    }
}
  
@media (max-width: 670px) {
    .navbar .main-menu {
        display: none;
    }
    .navbar .hamburger-button {
        display: block;
    }
    .navbar .hamburger-close {
        display: block;
    }
}
   
@media (max-width: 500px) {
}

.mobile-menu.active{
    right: 0;
}
.hamburger-button.inactive {
    display: none;
}
.hamburger-close.inactive {
    display: none;
}
   



