:root {
  --bg-dark: #111111;
  --text-light: #f0e0f7;
  --accent: #09BE7C; 
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

nav a {
  color: var(--text-light);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--accent);
}

.about-section {
  background-color: #222;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 10px rgba(9, 190, 124, 0.5);
  color: var(--text-light);
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--accent);
  object-fit: cover;
  margin-bottom: 1rem;
}

.about-section h1 {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

.about-section p {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-light);
}
.profile-container {
  display: flex;
  background-color: #222;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(9, 190, 124, 0.5);
  color: var(--text-light);
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--accent);
  object-fit: cover;
  margin-right: 2rem;
}

.profile-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-text h1 {
  margin: 0 0 0.5rem 0;
  color: var(--accent);
  font-weight: 700;
}

.profile-text p {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
}

.contact-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.contact-links a:hover {
  border-bottom: 2px solid var(--accent);
}

.profile-text #elismer {
  font-weight: bold;
}