body {
  background-color: #f0f2f5;
}

#content-wrapper {
  background-color: white;
  margin: 6rem;
  border-radius: 10px;
  padding: 2rem;
}

h1 {
  text-align: center;
}

p {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

#profile-pic {
  width: 200px;
  display: block;
  height: 200px;
  border-radius: 50%;
  border: 1px solid #cbcbcb;
  object-fit: cover;
  margin: 10px auto;
}

a {
  display: inline-block;
  background-color: white;
  color: black;
  border: 2px solid green;
  padding: 10px 0px;
  width: 120px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}

#cvAnchor {
  border-radius: 6px 0 0 6px;
}

#gitAnchor {
  border-radius: 0 6px 6px 0;
}

#linkedinAnchor {
  border-left: none;
  border-right: none;
}

#xpAnchor {
  border-right: none;
}

a:hover,
a:active {
  transition: 0.2s;
  background-color: green;
  color: white;
}

@media screen and (max-width: 870px) {
  #content-wrapper {
    margin: 1rem;
  }

  a {
    width: 100px;
  }
}

@media screen and (max-width: 610px) {
  a {
    width: 80%;
  }

  #cvAnchor {
    border-radius: 6px 6px 0 0;
  }

  #linkedinAnchor {
    border-top: none;
    border-bottom: none;
    border-left: 2px solid green;
    border-right: 2px solid green;
  }

  #gitAnchor {
    border-radius: 0 0 6px 6px;
  }

  #xpAnchor {
    border-bottom: 0;
    border-right: 2px solid green;
  }
}
