This commit is contained in:
2026-03-17 13:30:46 -05:00
parent f1b0a840a5
commit b8d60dbc24
2 changed files with 24 additions and 8 deletions

View File

@@ -146,14 +146,14 @@
</div>
<div class="about-img-2">
<figure class="image-anime reveal">
<img
src="images/match.png"
alt=""
style="width: 348px; height: auto"
/>
</figure>
</div>
<figure class="image-anime reveal">
<img
src="images/match.png"
alt=""
class="team-responsive-img"
/>
</figure>
</div>
</div>
<!-- About Image End -->
</div>

View File

@@ -267,6 +267,22 @@ img, picture, video, canvas, svg{
}
}
/* Team Image Responsive Styles */
.team-responsive-img {
width: 100%;
height: auto;
max-width: 500px;
border-radius: 8px;
display: block;
}
/* Mobile optimization */
@media (max-width: 768px) {
.team-responsive-img {
max-width: 100%;
}
}
a{
text-decoration: none;
}