.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: 24px;
  background-color: #3d2b0f;
  color: #e8800a;
  font-size: 28px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e8800a;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #221a0f;

  border: 1px solid #3d2b0f;
  border-radius: 10px;
  max-width: 420px;
  margin: auto;
}

h1{
    color: #f0d9b5;
    margin: 0 0 6px 0;
}

.subtitle{
    color: #a07850;
    margin: 0 0 8px 0;
}

.bio{
    color: #705840;
    text-align: center;
    margin: 0 0 1.5rem 0;
    padding: 2rem;
    margin-top: 0;
}


.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;        /* gap goes here, on the parent */
}

.skills span {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.skills-html{
    background-color: #1a3a5c;
    color: #5b9bd5;
    transition: background-color 300ms;
}

.skills-css{
    background-color: #1a3d2b;
    color: #4caf7d;
    transition: background-color 300ms;
}

.skills-git{
    background-color: #3d3000;
    color: #b8860b;
    transition: background-color 300ms;
}

.skills-html:hover{
    background-color: #0f2a45;
}

.skills-css:hover {
     background-color: #0f2a1e;
}

.skills-git:hover {
     background-color: #2a2000; 
}

nav {
    display: flex;
    gap: 30px;
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #3d2b0f;
}

nav a {
    text-decoration: none;
    color: #e8800a;
}

body{
    background: #1a1208;
}