The logo with the s/o is not really good. OPtimize that. Also, can you use better, more creative fonts?
Browse files- index.html +11 -13
- style.css +13 -2
index.html
CHANGED
|
@@ -41,26 +41,24 @@
|
|
| 41 |
<div class="absolute inset-0 bg-zinc-900">
|
| 42 |
<img src="http://static.photos/monochrome/1200x630/42" alt="Siegfried Ortner" class="w-full h-full object-cover opacity-90">
|
| 43 |
</div>
|
| 44 |
-
|
| 45 |
<!-- Logo -->
|
| 46 |
<div class="absolute top-8 left-8 z-20 group">
|
| 47 |
-
<
|
| 48 |
-
<div class="
|
| 49 |
-
<
|
| 50 |
-
|
|
|
|
| 51 |
</div>
|
| 52 |
-
</
|
| 53 |
</div>
|
| 54 |
-
|
| 55 |
-
<!-- Navigation -->
|
| 56 |
<custom-navbar></custom-navbar>
|
| 57 |
-
|
| 58 |
<!-- Hero Text -->
|
| 59 |
-
<div class="absolute bottom-32 left-0 right-0 text-center z-10">
|
| 60 |
-
<h1 class="text-
|
| 61 |
-
<p class="text-xl font-light text-zinc-300">
|
| 62 |
</div>
|
| 63 |
-
|
| 64 |
|
| 65 |
<!-- Sections -->
|
| 66 |
<section id="about" class="py-20 px-6 max-w-5xl mx-auto">
|
|
|
|
| 41 |
<div class="absolute inset-0 bg-zinc-900">
|
| 42 |
<img src="http://static.photos/monochrome/1200x630/42" alt="Siegfried Ortner" class="w-full h-full object-cover opacity-90">
|
| 43 |
</div>
|
|
|
|
| 44 |
<!-- Logo -->
|
| 45 |
<div class="absolute top-8 left-8 z-20 group">
|
| 46 |
+
<a href="#">
|
| 47 |
+
<div class="relative w-16 h-16 border border-zinc-300 p-2 rounded-full group-hover:border-zinc-100 transition-all duration-300">
|
| 48 |
+
<div class="flex items-center justify-center h-full">
|
| 49 |
+
<span class="text-3xl font-light tracking-tighter">s/o</span>
|
| 50 |
+
</div>
|
| 51 |
</div>
|
| 52 |
+
</a>
|
| 53 |
</div>
|
| 54 |
+
<!-- Navigation -->
|
|
|
|
| 55 |
<custom-navbar></custom-navbar>
|
|
|
|
| 56 |
<!-- Hero Text -->
|
| 57 |
+
<div class="absolute bottom-32 left-0 right-0 text-center z-10 hero-text">
|
| 58 |
+
<h1 class="text-7xl font-medium mb-2">Siegfried Ortner</h1>
|
| 59 |
+
<p class="text-xl font-light text-zinc-300 tracking-wider">PHOTOGRAPHER & FILMMAKER</p>
|
| 60 |
</div>
|
| 61 |
+
</div>
|
| 62 |
|
| 63 |
<!-- Sections -->
|
| 64 |
<section id="about" class="py-20 px-6 max-w-5xl mx-auto">
|
style.css
CHANGED
|
@@ -1,9 +1,20 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
|
| 3 |
body {
|
| 4 |
-
font-family: '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
}
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
/* Custom scrollbar */
|
| 8 |
::-webkit-scrollbar {
|
| 9 |
width: 8px;
|
|
|
|
| 1 |
+
|
| 2 |
+
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
|
| 3 |
|
| 4 |
body {
|
| 5 |
+
font-family: 'Archivo', sans-serif;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
h1, h2, h3, h4, h5, h6 {
|
| 9 |
+
font-family: 'Playfair Display', serif;
|
| 10 |
+
font-weight: 400;
|
| 11 |
+
letter-spacing: -0.03em;
|
| 12 |
}
|
| 13 |
|
| 14 |
+
.hero-text h1 {
|
| 15 |
+
font-weight: 500;
|
| 16 |
+
letter-spacing: -0.05em;
|
| 17 |
+
}
|
| 18 |
/* Custom scrollbar */
|
| 19 |
::-webkit-scrollbar {
|
| 20 |
width: 8px;
|