.bio {
  border-radius: 0;
  border-bottom: 3px solid white;
  cursor: default;
}

.bio-text {
  position: absolute;
  transform: translateY(-50%);
  margin: 0;
  top: 50%;
  left: 5%;
  letter-spacing: 2px;
  padding: 30px;
  border: 1px solid white;
  border-radius: 15px;
  width: 50vw;
  text-align: justify;
  line-height: 1.8;
  font-size: 1.1rem;
}

.bio-img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 80%;
  height: 600px;
  border: 3px solid white;
}

@media only screen and (max-width: 700px) {
  body {
    overflow-y: scroll;
  }

  .bio-img {
    display: none;
  }

  .bio-text {
    margin: 100px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 70vw;
    padding: 10px;
    line-height: 1.2;
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .bio {
    border-bottom: 2px solid #202020;
  }
}

@media only screen and (min-width: 701px) and (max-width: 1400px) {
  body {
    overflow-y: scroll;
  }

  .bio-img {
    display: none;
  }
  .bio-text {
    position: absolute;
    width: 90vw;
    font-size: 1rem;
    line-height: 1.8;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 60%;
    padding: 10px;
    letter-spacing: 1px;
  }
}

@media only screen and (min-width: 1401px) and (max-width: 1600px) and (max-height: 800px) {
  .bio-text {
    position: absolute;
    width: 50vw;
    font-size: 1rem;
    line-height: 1.8;
    transform: translate(-50%, -50%);
    left: 30%;
    top: 50%;
    padding: 20px;
    letter-spacing: 1px;
  }
}
