Files
2026-05-18 11:46:02 +02:00

104 lines
2.1 KiB
HTML

+++
title = ""
menu = "main"
url = "/about/"
+++
<section id="team">
<h1 style="text-align:center;">Bandmitglieder</h1>
<!-- Mitglied 1 -->
<div class="team-row">
<div class="team-text">
<h2>Olly</h2>
<p>Lead Gitarrist und Sänger</p>
</div>
<div class="team-image">
<img src="/img/about/Olly_compressed.jpg" alt="Olly">
</div>
</div>
<!-- Mitglied 2 -->
<div class="team-row">
<div class="team-image">
<img src="/img/about/Lucas_compressed.jpg" alt="Lucas">
</div>
<div class="team-text">
<h2>Lucas</h2>
<p>Rhytmusgitarrist</p>
</div>
</div>
<!-- Mitglied 3 -->
<div class="team-row">
<div class="team-text">
<h2>Ahrens</h2>
<p>Schlagzeuger</p>
</div>
<div class="team-image">
<img src="/img/about/Ahrens_compressed.jpg" alt="John Doe">
</div>
</div>
<!-- Mitglied 4 -->
<div class="team-row">
<div class="team-image">
<img src="/img/about/Felix_compressed.jpg" alt="John Doe">
</div>
<div class="team-text">
<h2>Felix</h2>
<p>On the Bass</p>
</div>
</div>
<div id="Gruppenfoto">
<img src="/img/about/Gruppenbild_compressed.jpg" class="responsive-img" alt="Gruppenfoto" width="1200" height="800">
</div>
</section>
<style>
#team {
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
}
.team-row {
display: flex;
align-items: center;
justify-content: space-between;
margin: 2rem 0;
gap: 2rem;
}
.team-text {
flex: 1;
}
.team-image img {
width: 300px;
height: auto;
border-radius: 10px;
}
.responsive-img {
max-width: 100%;
height: auto;
display: block;
margin: 2rem auto 0 auto; /* zentriert auf Mobil */
}
@media (max-width: 768px) {
.team-row {
flex-direction: column-reverse;
text-align: center;
}
.team-image img {
width: 80%;
margin: 0 auto;
}
}
</style>