@import url('https://fonts.googleapis.com/css2?family=Nunito');

html {
  scroll-behavior: smooth;
}

body {
  background: rgb(130, 60, 60);
  font-family: 'Nunito', sans-serif;
  margin: 0 auto;
}

h1 {
  font-size: 1.4rem;
}

h2 {
  font-size: 1.2rem;
  text-align: center;
}

h3 {
  text-align: center;
  background-color: rgba(130, 60, 60, 0.2);
  border-radius: 0.4rem;
  margin-top: 0;
  padding: 1rem 0rem;
}

#profile-wrapper {
  display: block;
  text-align: center;
}

#profile {
  display: inline-block;
  justify-content: center;
}

.profile-image {
  display: inline-block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid whitesmoke;
  overflow: hidden;
  margin-bottom: 0;
}

.profile-image > a > img {
  width: 100%;
}

#projects {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.projects-card {
  width: 320px;
  background-color: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.6) 0 0.065rem 0.25rem;
  border-radius: 0.4rem;
  padding: 1rem;
}

#chart-wrapper {
  width: 90vw;
  max-width: 512px;
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
}

footer {
  margin-top: 1rem;
}

header, footer {
  background-color: #f2f2f2;
  text-align: center;
  padding: 1rem 0rem;
  width: 100%;
}

footer, a {
  color: rgb(130, 60, 60)
}

footer > p > a {
  text-decoration: none;
}