body {
  background-color: #0f0f0f;
  color: #fff;
  font-family: Consolas, monospace;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header {
  background-color: #181818;
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(0%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
h1 span {
  color: #43bc4f;
}
.profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}
.ring {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ring i {
  position: absolute;
  inset: 0;
  border: 2px solid #ffffff;
  transition: 0.5s;
}
.ring i:nth-child(1) {
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: animate 6s linear infinite;
}
.ring i:nth-child(2) {
  border-radius: 41% 44% 56% 59% / 38% 62% 63% 37%;
  animation: animate 4s linear infinite;
}
.ring i:nth-child(3) {
  border-radius: 41% 44% 56% 59% / 38% 62% 63% 37%;
  animation: animate 18s linear infinite;
}
.ring:hover i {
  border: 6px solid var(--clr);
  filter: drop-shadow(0 0 20px var(--clr));
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.buttons button {
  background-color: #43bc4f;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
.content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section {
  background-color: #181818;
  padding: 30px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 25px;
}
.separator {
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.skills-grid img {
  width: 100px;
  margin: 10px;
}
@media (min-width: 768px) {
  body {
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
  }
  header {
    background-color: #181818;
    padding: 30px;
    border-radius: 10px;
    margin: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 30%;
    height: 90vh;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-2%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  }
  .content {
    margin-left: 35%;
    width: 65%;
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
  }
}
