#aboutMe {
  user-select: none;
  width: 800px;
  height: 500px;
  position: absolute;
  background-color: white;
  z-index: 100;
  border: 2px solid black;
  border-radius: 30px;
  font-size: small;
  left: 20%;
  top: 20%;
  /* display: flex; */
  display: none;
  flex-direction: row;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  cursor: grab;
}

#aboutMe:active {
  cursor: grabbing;
}

.aboutButton {
  box-sizing: border-box;
  position: relative;
  background-color: white;
  margin-top: 20px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: 2px solid black;
  --leftOff: -6px;
  --topOff: 6px;
}

.aboutButton:hover {
  --leftOff: 0px;
  --topOff: 0px;
  transition: all 0.1s ease-in-out;
}

.aboutButton::before {
  content: "";
  position: absolute;
  background-color: black;
  top: var(--topOff);
  left: var(--leftOff);
  width: 100%;
  height: 50px;
  border-radius: 30px;
  z-index: -1;
  transition: all 0.1s ease-in-out;
  /* border: 2px solid black; */
}

#aboutLeft {
  position: relative;
  height: 100%;
  padding-left: 30px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#aboutButtons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

#aboutRight {
  height: 100%;
}

#aboutTextContainer {
  position: relative;
  width: auto;
  overflow: scroll;
  bottom: 40px;
  border-radius: 15px;
  padding: 20px;
  border: 2px solid black;
}

#imageContainer {
  height: 100%;
  padding-right: 20px;
  padding-left: 20px;
  overflow: hidden;
}

#imageContainer img {
  pointer-events: none;
  height: 100%;
  width: auto;
  border: 2px solid black;
  object-fit: contain;
}
