initial commit

This commit is contained in:
2026-04-27 19:17:22 +02:00
commit b22bfcf15b
65 changed files with 2758 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
.about-me {
position: relative;
justify-content: space-around;
align-items: center;
width: 85%;
max-width: 980px;
height: auto;
border-radius: 25px;
top: 35px;
left: 50%;
margin-bottom: 20px;
transform: translate(-50%);
background-color: rgba(0, 0, 0, 0.7); /* Dunklerer Hintergrund für besseren Kontrast */
padding: 25px;
color: white; /* Schriftfarbe weiß */
line-height: 1.6; /* Zeilenabstand für bessere Lesbarkeit */
font-size: 16px; /* Schriftgröße für bessere Lesbarkeit */
font-family: 'Nanum Gothic Coding';
text-align: justify;
}
img {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-user-drag: none;
}