* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  position: relative;
  height: 100vh;
  background-color: #6a7563;
  display: flex;
  align-items: center;
  justify-content: center;
}
#container {
  position: relative;
  display: flex;
  border-radius: 1.2rem;
  width: 98vw;
  max-width: 1260px;
  height: 96vh;
  max-height: 700px;
  background-color: transparent;
}
#navigation-container{
  border-radius: 1.2rem;
  margin-right: 1%;
  width: 7%;
  background-color: #292929;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#profilePic{
  width: 60%;
  aspect-ratio: 1/1;
  border: 1px solid white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 120px;
  margin-top: 7%;
}
#profileName {
  font-size: 14px;
  text-align: center;
  margin-top: 3%;
  color: #919191;
  font-family: var(--font2);
  width: 90%;
}
.hrNav {
  width: 90%;
  height: 0.07rem;
  margin: 10px 0px;
  border: none;
  background-color: rgba(196, 196, 196, 0.2);
}
.navBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #262424;
  border: 1px solid transparent;
  margin-bottom: 3.5%;
  padding: 2%;
  width: 70%;
  aspect-ratio: 1/1;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s ease;
}
.navBtn:hover,
.navBtn.navActive {
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  background-color: #303030;
}
.navBtn::before{
  content: attr(alt);
  position: absolute;
  opacity: 0;
  z-index: 4;
  color: white;
  background-color: #333333;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 510;
  padding: 6px 15px 4px 15px;
  border-radius: 25px;
  transform: translateX(4rem) rotate(5deg);
  transition: 0.3s ease;
}
.navBtn:hover::before{
  opacity: 1;
  transform: translateX(7.2rem) rotate(0deg);
}
.navIcon{
  width: 24px;
  height: 24px;
  border-radius: 25px;
  transition: 0.3s ease;
}
.navText{
  font-size: 19px;
  letter-spacing: 1px;
  padding-top: 4px;
  margin: 0px 5px;
  font-weight: 510;
  color: whitesmoke;
}
#main-container{
  width: 92%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
}

@media (max-width: 1100px){
  #main-container{
    width: 93%;
  }
  #navigation-container{
    width: 7%;
  }
  #profilePic{
    margin: 12% auto;
  }
  #profileName{
    font-size: 10px;
  }
  .navBtn{
    border-radius: 100px;
    width: 70%;
    aspect-ratio: 1/1;
    margin-bottom: 10%;
  }
  .navIcon{
    width: 22px;
    height: 22px;
  }
  .navText{
    display: none;
  }
}

@media (max-width: 770px){
  
  #container {
    flex-direction: column;
  }
  #main-container{
    border-radius: 0rem 0rem 1.2rem 1.2rem;
    min-width: 320px;
    width: 100%;
    height: 93%;
  }
  #navigation-container{
    flex-direction: row;
    border-radius: 1.2rem 1.2rem 0rem 0rem;
    width: 100%;
    min-width: 320px;
    height: 7%;
    margin-right: 0%;
  }
  #profilePic{
    height: 75%;
    width: auto;
    margin: 0% 0% 0% 2%;
    aspect-ratio: 1/1;
  }
  #profileName {
    margin: 0px 7px;
    width: auto;
    max-width: 120px;
    text-align: left;
  }
  .hrNav{
    width: 0.07rem;
    height: 75%;
    border: none;
    background-color: rgba(196, 196, 196, 0.2);
  }
  .navBtn{
    display: none;
  }
}