body {
  background: #f2f2f2;
  font-family: "Courier New", monospace;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.terminal {
  background: white;
  width: 500px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
  padding: 6px 10px;
}

.terminal-title {
  font-weight: bold;
}

.window-controls span {
  margin-left: 8px;
  cursor: default;
}

.terminal-body {
  padding: 20px;
  color: #222;
}

.profile {
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-top: 10px;
}

.profile img {
  width: 150px;
  height: auto;
  border: 1px solid #aaa;
}

.links {
  display: flex;
  flex-direction: column;
  justify-content: start;
  font-size: 14px;
  margin-top: 5px;
}

.links a {
  text-decoration: none;
  color: blue;
  margin: 2px 0;
}

.bio {
  margin-top: 20px;
  font-size: 14px;
}

.bio p {
  margin: 6px 0;
}
