initial commit

This commit is contained in:
2026-04-14 16:20:22 +03:00
commit 724f16b589
39 changed files with 1179 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
@keyframes fade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
background-color: #1f1f28;
display: flex;
}
img {
animation: fade 500ms ease-in-out;
margin: auto;
width: 100%;
}