/* style.css */

.container {
    max-width: 1500px;
    margin: 0 auto;
}
.title {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 5px;
}
.unterschrift {
    text-align: center;
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 30px;
}
.portfolio {
    margin-bottom: 40px;
}
.portfolio .row {
    margin-bottom: 20px;
}
.portfolio .img-fluid {
    width: 100%;
    height: auto;
}
.view-more {
    display: block;
    text-align: center;
    margin-bottom: 40px;
}
.footer {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-top: 20px;
    margin-bottom: 20px;
}
nav.navbar {
    padding-top: 45px; /* Set your desired top margin value */

}
.navbar-brand {
    font-size: 30px;
    font-variant: small-caps;
}
.follow-button {
    display: inline-block;
    background: url('https://static.wixstatic.com/media/01c3aff52f2a4dffa526d7a9843d46ea.png/v1/fill/w_24,h_24,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/01c3aff52f2a4dffa526d7a9843d46ea.png') no-repeat center center;
    background-size: cover;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.follow-button-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* EXPERIMENTAL ADDITIONS */

    /* Zentriere die Button-Gruppe */
    .btn-group-center {
		text-align: center;
    }

    /* Style für den aktiven Filter-Button */
    .btn-filter.active {
      background-color: blue;
      color: white;
    }

    /* Style für inaktive Filter-Buttons */
    .btn-filter:not(.active) {
      background-color: #ddd; /* Graue Hintergrundfarbe für inaktive Buttons */
      color: #555; /* Textfarbe für inaktive Buttons */
	}