Initial commit

This commit is contained in:
2025-11-10 16:31:08 +01:00
commit 3080726c9b
18 changed files with 685 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
* {
box-sizing: border-box;
}
body {
width: 100%;
height: 100%;
margin: 0;
padding: 30px;
background-color: #fcfcfc;
}
h1 {
text-align: center;
}
.gallery {
margin-top: 100px;
width: 100%;
display: flex;
flex-wrap: wrap;
}
.gallery a {
overflow: hidden;
display: block;
margin-bottom: 10px;
width: fit-content;
}
.gallery img {
width: 100%;
}