body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #333;
}

header {
  background: #222;
  color: white;
  padding: 20px;
  text-align: center;
}

.container {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

.profile-pic {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.skills-list {
  list-style: none;
  padding: 0;
}

.skills-list li {
  margin-bottom: 5px;
}

.snake-embed {
  width: 100%;
  height: 400px;
  border: 1px solid #ccc;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #444;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
/* Container for the profile picture */
.profile-container {
  text-align: center; /* Center the image */
  margin-bottom: 20px; /* Space below the image */
}

/* Profile picture styles */
.profile-pic {
  width: 150px; /* Set a fixed size for the image */
  height: 150px; /* Make the height the same as width to create a square image */
  border-radius: 50%; /* Make the image round */
  object-fit: cover; /* Ensures the image fills the circle without being stretched */
  border: 3px solid #fff; /* Optional: Adds a border around the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a slight shadow */
}