main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 0.2fr 1fr 0.5fr);
  grid-column-gap: 0px;
  grid-row-gap: 2rem;

}

h1 {
  grid-area: 1 / 1 / 2 / 3;
  text-align: center;
}

.wrapper {
  grid-area: 2 / 1 / 3 / 3;
  display: flex;
  margin: 0 3rem;
  justify-content: space-between; 
  align-items: stretch;
  height:100%;
}

.long-wrapper {
  grid-area: 3 / 1 / 4 / 3;
  display: flex;
  margin: 0 3rem;
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  box-shadow: 0.5em 0.5em 0 0 #f500a0, inset 0.5em 0.5em 0 0 #f500a0;
}


.long-wrapper p {
  padding-bottom: 0.7rem;
}

.contact-svg path {
  stroke-dasharray: 996;
  stroke-dashoffset: 996;
  animation: dash 5s ease-in-out infinite alternate;
}


@keyframes dash {
  from {
    stroke-dashoffset: 996;
    stroke: #f500a0;
  }
  to {
    stroke-dashoffset: 0;
    stroke: black;
  }
}

/* .contact-pic {
  aspect-ratio: 1/1;
  width: 200px;
} */

.contact-svg {
  width: 60vw;
  height: 60vw;
  padding: 2rem 0;
  stroke: 2px;
}


.stack-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap:1rem;
  justify-content: space-between;
}

.stack-list > li {
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
  max-width:25ch;
  width:10ch;
  gap:1rem;
}

.stack-list > li > i {
  align-self:bottom;
}

a {
  color: black;
}

.so-me {
  padding-top: 2rem;
}


@media only screen and (min-width: 992px) {
  .wrapper {
    width:auto;
  }

  .contact-svg {
      width: 25vw;
  height: 25vw;
  padding: 2rem 0;
  stroke: 2px;
  }
}
