body {
    background-color: black;
    color: #ccc;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0px;
}

* {
    color: #ccc; /* Hier Ihre Wunschfarbe einsetzen (z.B. Schwarz) */
    text-decoration: none; /* Entfernt die Unterstreichung */
    scroll-margin-top: 80px;
}

.content {
    width: 90%;
    max-width: 1400px;
    display: grid;
    gap: 20px;
    margin: auto;
}

nav {
    width: 100%;
    position: fixed;
    top: 0px;
    height: 40px;
    font-size: larger;
    z-index: 1000;
    padding: 1rem;
}

nav a {
    padding-left: 10px;
    padding-right: 10px;
}

nav.scrolled {
    background-color: black;
}

.banner {
    width: 100vw;
    height: 100vh;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: grayscale(70%);

    /* Für eine nahtlose Unterstützung in allen modernen Browsern */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.logo {
    position: absolute;
    top:10%;
    right: 8%;
}

.title {
    position: absolute;
    width: 80%;
    font-size: 2rem;
    bottom: 10px;
}

@media (min-width: 480px) {
	.title { 
        left: 15%;
        top: 70%;
        font-size: 3.5rem;
    }
}

.subtitle {
    font-size: 2rem;
}

.boxed {
    background-color: rgba(100,100,100,0.4);
    border-radius: 10px;
    border: solid 1px #ccc;
    padding: 20px;
}

.intro {
}

.three-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 480px) {
	.three-col { 
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }
}

.trainer {
    overflow: hidden;   
    max-width: 290px;
}

.trainer-image {
    display: block;
    margin: auto;
    width: 100%;
    height: 290px;
    object-fit: cover;
    object-position: top;
}

.training-location {
    display: block;
    width: 100%;
}

.training-location img {
    width: 100%;
}


@media (min-width: 480px) {
	.training-location { 
       float: right;
        width: 40%;
    }
}
