* {
  box-sizing: border-box;
  color: black;
  font-family: monospace;
  font-family: "Fira Code", Arial, Helvetica, sans-serif;
  font-size: 24px;
  margin: 0;
  padding: 0;
}

section {
  padding: 12px;
}

.name {
  background-color: #FF7F50;
}

.bio {
  background-color: #FFD700;
}

.interests {
  background-color: #D086F6;
}

.projects {
  background-color: #00A4DE;
}

.projects-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 20px;
}

.project {
  background-color: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.project:hover {
  transform: translateY(-5px);
}

.project .title {
  align-items: center;
  background-color: #1a1a1a;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 12px 16px;
}

.project .title .controls {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.control {
  background-color: #777;
  border-radius: 50%;
  display: inline-block;
  height: 0.6em;
  width: 0.6em;
}

.control.close {
  background-color: #e33;
}

.control.minimize {
  background-color: #ee0;
}

.control.maximize {
  background-color: #0b0;
}

.project .title p {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.project .title a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.project .subtitle {
  background-color: #FFE4B5;
  color: #333;
  flex-grow: 1;
  font-size: 14px;
  overflow-y: auto;
  padding: 12px 16px;
}

.project .chips {
  background-color: #ffffff;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
}

.project .chip {
  background-color: #a0e6f5;
  border-radius: 16px;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
}

.skills {
  background-color: rgb(241, 149, 179);
}

.skills-list {
  list-style: none;
  padding: 12px;
}

.skill-type {
  background-color: #ecf0f1;
  border-right: 4px solid #003e68;
  border-bottom: 4px solid #003e68;
  border-radius: 8px;
  color: #2c3e50;
  font-size: 1.1em;
  margin-bottom: 15px;
  padding: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.skill-type:hover {
  background-color: #d9eaf7;
  transform: translate(-2px, -2px);
}

.skill-category {
  color: #2980b9;
  font-weight: 600;
  margin-right: 10px;
}

.skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skills-chips span {
  background-color: #3498db;
  border-radius: 16px;
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
}

.links {
  background-color: rgb(63, 180, 113);
}

.links-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 20px;
}

.link {
  background-color: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 12px;
  transition: transform 0.2s ease-in-out;
}

.link-anchor {
  overflow-wrap: break-word;
}