body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1B1D21;
  color: #FFFFFF;
}

header {
  background-color: #212229;
  padding: 2rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

h1, h2, h3, strong {
  color: #0b90ce;
}

header p {
  font-size: 1.2rem;
  color: #FFFFFF;
}

nav {
  text-align: center;
  /*background-color: #4a4f58;*/
  background-color: #111216;
  padding: 1rem;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 1rem 1rem;
  border-radius: 0px;
}

@media (max-width: 600px) {
  nav a {
    padding: 1rem 0.5rem;
  }
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111216;
  white-space: nowrap;
  margin-top: 0.975rem;
  z-index: 1;
}

/* Individual link styling */
.dropdown-content a {
  color: #FFFFFF;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Hover to show dropdown */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hover effect for links */
.dropdown-content a:hover {
  background-color: #0a81b9;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.project img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #FFFFFF;
  background-color: #212229;
}

a {
  color: #0b90ce;
  transition: color 0.2s;
}

a:hover {
  color: #63b3ff;
  text-decoration: underline;
}

nav a:hover {
  background-color: #0a81b9;
  color: #FFFFFF;
  text-decoration: none;
}

/* Profile Picture Styling */
.profile-pic-container {
text-align: center;
margin-bottom: 2rem;
}

.profile-pic {
width: 180px;
height: 180px;
border-radius: 50%;
object-fit: cover;
border: 5px solid #0b90ce;
}

.project-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
margin: 1rem 0;
}

.project-grid img {
width: 100%;
height: auto;
border-radius: 8px;
object-fit: cover;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
transition: transform 0.2s ease;
}

.project-grid img:hover {
transform: scale(1.04);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  margin: 1rem 0;
}

.screenshot-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
