main {
  padding: 0 1rem 4rem 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20vh;
  margin-bottom: 33vh;
}

.top-row {
  display: flex;
  width: 75%;
  gap: 2rem;
}

.bottom-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
  margin-top: 2rem;
}

.top-row > div,
.bottom-row > div {
  flex: 1;
  text-transform: none;
  font-size: 1rem;
}

.bio {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 75ch;
}

main div h2 {
  text-transform: uppercase;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  vertical-align: top;
  padding-bottom: 1rem;
}

td:first-child {
  white-space: nowrap;
  padding-right: 1.5rem;
}

td:first-child {
  width: 5rem;
}

.postit-container {
  flex: 1;
  max-width: 25%;
  text-align: center;
  cursor: pointer;
  position: fixed;
  bottom: 72px;
  right: 72px;
  font-size: 1rem;
  flex: 0 0 15%;
}
/*
#svg1 {
  position: fixed;
  bottom: 72px;
  right: 72px;
  width: 180px;
  height: 180px;
  transform: rotate(-8deg);
}*/
.postit {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  transform: rotate(-8deg);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.postit:hover {
  transform: rotate(-8deg) scale(1.05);
}

.contact-links {
  display: none;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 10;
  justify-content: center;
}

.postit-container .contact-link {
  font-size: 2.5rem;
  color: #ff69b4 !important;
  text-decoration: none;
  padding: 0.8rem;
  background: transparent;
  transition: all 0.3s;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.postit-container .contact-link:hover {
  color: #ffcc00 !important;
  transform: scale(1.2);
}

.postit-container.active .contact-links {
  display: flex;
}

.backgroundOverflow {
  background: black;
}
@media (max-aspect-ratio: 1/1) {
  main {
    margin-bottom: 20vh;
  }
  main div,
  .postit-container {
    width: 100%;
    padding: 0;
    margin-bottom: 3rem;
  }
  footer {
    position: initial;
  }
  footer ul li {
    width: auto;
  }
  .top-row {
    width: 100%;
  }
  .bio {
    max-width: 100%;
  }
  .postit-container {
    position: initial;
    max-width: 90%;
  }
}
