Първоначалния сайт

This commit is contained in:
2026-05-09 15:24:31 +03:00
parent a3ac63152e
commit 7465d022cc
133 changed files with 1166579 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
/* Основни стилове */
* {
box-sizing: border-box;
}
img {
max-width: min(100%, 450px);
height: auto;
object-fit: contain;
}
/* Контейнер за центриране на съдържанието */
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Адаптивни стилове за мобилни устройства */
@media screen and (max-width: 768px) {
img {
margin-top: 5px;
}
p {
margin-bottom: 5px;
}
}