html {
  position: relative;
  height: 100%;
}
body {
  background-color: #f7f7f7;
  cursor: default;
  height: 100%;
}
footer {
  border-top: 1px solid #000;
}
header {
  background-color: #ededed;
}
.container {
  margin-bottom: 3rem;
  max-width: 50rem;
}
h1 {
  margin-bottom: 4rem;
}
.my-ul {
  list-style: none;
  margin-bottom: 0;
}
.my-li {
  cursor: pointer;
  display: inline;
  padding-right: 1.5rem;
}
.my-li:hover {
  text-decoration: underline #000;
}
.separator-line {
  text-align: center;
  border-top: 1px solid #d3d3d3;
  margin-bottom: 5rem;
}
.rounded-xl {
  border-radius: 7%;
}
.avatar {
  border-radius: 50%;
  border: 0.2rem solid #d3d3d3;
}
.footer-icon {
  width: 1rem;
  color: light-gray;
}
.hobby {
  margin-bottom: 2rem;
}
.emoji {
  font-size: 2rem;
  margin-bottom: 0;
}
.footer-link {
  color: #808080;
}
.project-card {
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.project-card-interactive {
  transition: all 0.2s ease-in-out;
}
.project-card-interactive:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.project-card-interactive:active {
  background-color: #f5f5f5;
  transform: scale(0.95);
}
.project-image {
  border-radius: 1rem;
  transition: all 0.4s ease-in-out;
  filter: opacity(70%);
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
}
.project-image:hover {
  cursor: pointer;
  filter: none;
  transform: scale(1.1);
}
.project-link {
  font-size: 1.5rem;
  color: #808080;
}
.tech-item {
  border: 1px solid #d3d3d3;
  border-radius: 2rem;
  padding: 0.2rem 0.5rem;
  color: #808080;
  display: inline-block;
}
