Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
midtsveen authored Jul 3, 2024
1 parent dc90b7c commit b149b99
Show file tree
Hide file tree
Showing 2 changed files with 137 additions and 0 deletions.
51 changes: 51 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Erik Leander Midtsveen</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Erik L. Midtsveen</h1>
<nav>
<a href="https://x.com/erik_itpartiet" aria-label="Twitter">Twitter</a>
<a href="https://bandcamp.com/pmarg" aria-label="Bandcamp">Bandcamp</a>
<a href="https://discogs.com" aria-label="Discogs">Discogs</a>
<a href="https://github.com" aria-label="GitHub">GitHub</a>
</nav>
</header>

<main>
<section id="about">
<h2>About Me</h2>
<p>I enjoy taking walks in the city center, watching the world go by and observing people. Music is a big part of my life - I love progressive psytrance and metal. Computers fascinate me, and I'm interested in technology.</p>
<p>As for dislikes, I'm not a fan of traveling or long car rides. I'm skeptical about electric cars like Teslas - the idea of computers on wheels doesn't sit well with me. TVs are another no-go; the constant audio makes me feel sick and tired.</p>
<p>I'm deeply interested in North Korea and hope to see it freed in my lifetime.</p>
</section>

<section id="interests">
<h2>My Interests</h2>
<p>I'm passionate about privacy, security, and open-source technology. Here are some projects and organizations I support:</p>
<ul>
<li><a href="https://www.kicksecure.com/">Kicksecure</a> - A security-focused operating system</li>
<li><a href="https://www.debian.org/">Debian</a> - A stable and versatile Linux distribution</li>
<li><a href="https://grapheneos.org/">GrapheneOS</a> - A privacy and security-focused mobile OS</li>
<li><a href="https://itpartiet.no/">itpartiet</a> - The Norwegian Pirate Party advocating for digital rights</li>
</ul>
<p>These initiatives align with my values of digital freedom, privacy, and technological advancement.</p>
</section>

<section id="contact">
<h2>Contact</h2>
<p>Want to chat or just say hi? I'm always up for interesting conversations!</p>
<p>You can find me on Matrix: <a href="https://matrix.to/#/@p-marg:envs.net">@p-marg:envs.net</a></p>
</section>
</main>

<footer>
<p>&copy; 2024 Minimalist Monochrome. All rights reserved.</p>
</footer>
</body>
</html>
86 changes: 86 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/* Base styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}

/* Typography */
h1, h2 {
color: #222;
}

h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

h2 {
font-size: 2rem;
margin-top: 2rem;
}

p {
margin-bottom: 1rem;
}

/* Layout */
header, main, footer {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}

/* Navigation (Social Links) */
nav {
margin-top: 1rem;
}

nav a {
color: #333;
text-decoration: none;
margin-right: 1rem;
transition: color 0.3s ease;
}

nav a:hover {
color: #000;
}

/* Sections */
section {
margin-bottom: 3rem;
}

/* Footer */
footer {
text-align: center;
color: #777;
font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 600px) {
body {
font-size: 16px;
}

h1 {
font-size: 2rem;
}

h2 {
font-size: 1.5rem;
}

header, main, footer {
padding: 1rem;
}

nav a {
margin-right: 0.5rem;
}
}

0 comments on commit b149b99

Please sign in to comment.