diff --git a/index.html b/index.html index e275f66..a9ab0c6 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,5 @@ -!DOCTYPE html> + +
@@ -13,11 +14,17 @@ padding: 20px; background: linear-gradient(to right, #00c6ff, #0072ff); /* New gradient background */ color: #333; + text-align: center; } - h1, h2, h3, h4 { - text-align: center; - color: #2c3e50; - } + h1, h2, h3, h4 { + text-align: center; + color: white; /* Base color */ + text-shadow: + 1px 1px 0px black, + 2px 2px 0px black, + 3px 3px 0px black, + 4px 4px 0px black; /* Creates the outline effect */ + } p { text-align: justify; } @@ -73,11 +80,19 @@ gap: 20px; justify-items: center; } + .logo-container { + position: relative; /* Position relative to allow absolute positioning of the background */ + display: inline-block; /* Make the container fit the content */ + padding: 20px; /* Padding inside the box */ + background: rgba(255, 255, 255, 0.7); /* White background with 70% opacity */ + border-radius: 15px; /* Curved corners */ + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */ + }