

.tab-page img {
  max-width: 100%;
}

#pfp {
  height: 250px;
  float: right;
  margin: 5px;
  margin-top: 10px;
}

#sona {
  height: 220px;
  float: left;
  margin: 5px;
  margin-top: 10px;
}

#snapshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 5px;
}

#snapshots .box-titled :nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}

#snapshots a {
  display: flex;
}


#fav-boxes .box-titled {
  height: fit-content;
}


#fav-boxes ul {
  margin: 5px;
  padding-left: 20px;
}


#wcrat {
  margin: 5px 5px 5px 15px;
  float: right;
  border-radius: 3px;
  border: 1px dotted var(--box-border-color);
  /* margin: 0 auto; */
}

#name {
  text-align: justify;
}



.wall-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: fit-content;
}

#main {
    background-image: linear-gradient(to top, var(--background-color) 0%, rgba(255, 255, 255, 0) 40%);
}


@media only screen and (max-width: 900px) {
  #column-3 {
      display: none;
  }
}


@media only screen and (max-width: 700px) {

  #snapshots, #fav-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #fav-boxes .box-titled {
    width: 100%;
  }

  .fav-column {
    gap: 10px;
  }

  #wcrat {
    width: 80%;
    margin: 0;
    order: 3;
    margin: 0 auto;
  }

  #name {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #pfp {
    width: 40%;
    height: auto;
  }

  #sona {
    width: 40%;
    height: auto;
  }

  .wall-grid {
    display: grid;
    margin: 0px;
  }

  .column {
    display: none;
  }

}
