body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1rem auto;
  min-width: 35rem;
  max-width: 60rem;
  animation: fadeIn 1s ease-in-out forwards;
}

#box {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 15px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.header {
  height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("images/lowpoly.png");
  background-repeat: no-repeat;
  background-position-x: center;
}

.pp {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.pp img {
  width: 100%;
  height: 100%;
}

#main {
  margin: 1.5rem;
  text-align: justify;
}

#skills-grid {
  display: grid;
  align-items: center;
  width: 5rem;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

#skills-grid img {
  max-height: 100px;
  object-fit: contain;
  margin: auto;
}

hr {
  border: none;
  border-top: 1px solid #505050;
  opacity: 20%;
}

#profile-pic {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #e0e0e0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(55%) brightness(110%);
}

#name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  filter: saturate(0%) brightness(0%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
