Add about me section

This commit is contained in:
2025-09-01 13:14:29 +02:00
parent f4ef9fcbea
commit 0e6ddfede4
8 changed files with 124 additions and 6 deletions

BIN
static/TuxAinrom.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@ -927,6 +927,41 @@ footer {
color: #6b7280;
}
/* About page */
.about {
padding: 5rem 0;
}
.about-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 3rem;
align-items: start;
}
.about-text p {
margin: 1rem 0;
line-height: 1.8;
color: #374151;
}
.about-cta {
margin-top: 2rem;
}
.about-photo img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
.about-grid {
grid-template-columns: 1fr;
}
}
/* Responsive Design */
@media (max-width: 1024px) {
.container {