.profilePage {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 100px;
}

.profilePersonal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profileImage {
    width: 150px;
    height: 150px;
    object-fit: cover;
    position: relative;
    border: 4px solid transparent;
    border-radius: 100%;
    background-clip: padding-box;
    padding: 2px;
    cursor: pointer;
}

.profileOwner {
    font-weight: bold;
    padding-bottom: 30px;
}

.profileData {
    display: flex;
    top: 70px;
}

table {
    border-collapse: collapse;
    width: 400px;
  }
  
td {
    text-align: center;
  }

.changeProfile {
    margin-top: 40px;
    width: 380px;
    height: 25px;
    border: unset;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #222;
    z-index: 1;
  }

/*-------Gallery------*/

.imageSection {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 100px 150px 50px 150px;
  position: relative;
}

.imageList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    width: 100%;
    gap: .5rem;
  }

.imageList > img {
    width: 30%;
    height: 42%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 250ms;
}

.imageList > img:hover {
    opacity: 0.75;
}

.imageContainer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 95%);
  padding: 150px;
  z-index: 99;
}

.imageContainer img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.navArrow {
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: 50%;
  width: 96%;
  left: 30px;
}

.closeArrow .material-symbols-outlined {
  position: absolute;
  color: white;
  right: 10px;
  top: 10px;
  background-color: rgba(211,211,211, 20%);
  border-radius: 50px; 
  padding: 10px;
}

.arrowLeft {
  background-color: rgba(211,211,211, 20%);
  color: white;
  padding: 10px 8px 10px 15px; 
  border-radius: 50px; 
  margin: 0px 20px;
}

.arrowRight {
  background-color: rgba(211,211,211, 20%);
  color: white;
  padding: 10px 11px 10px 12px; 
  border-radius: 50px; 
  margin: 0px 20px;
}

@media (max-width: 769px) {

  body {
    padding: 5px;
  }

	.imageSection > img {
      width: 100%;
  }

  table {
    border-collapse: collapse;
    width: 325px;
    padding: 0px 10px;
    font-size: 14px;
  }

  .changeProfile {
    width: 250px;
    margin-top: 35px;
  }

  .imageSection {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    padding: 120px 0px 70px 0px;
    position: relative;
  }

  .navArrow {
    top: unset;
    bottom: 3%;
    width: 100%;
    left: 0;
  }

  .imageContainer {
    padding: unset;
    z-index: 100;
  }

}