/* WARNING DO NOT EDIT THIS FILE UNLESS YOU KNOW WHAT YOU ARE DOING */

body {
  background-color: rgba(0, 45, 90, 1);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  height: 100%;
}

img[src$='PPP_ICON.png'] {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    border-width: 3px;
  }

#portfoliocontainer {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  text-align: center;
  border: 5px solid #0000;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.938);
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.911);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

#minicontainer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 5px solid #d6212100;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 50px;
  background-color: #080808a0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-height: 100%; 
  overflow-y: auto;
  padding-right: 15px;
  box-sizing: content-box;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

#minicontainer::-webkit-scrollbar {
  width: 6px;
}

#minicontainer::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.profile-pic {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #DFF6FF;
  display: block;
  margin: 0 auto 20px;
}

img[src$='verified_icon.png'] {
  width: 40px;
  height: 40px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.socialbutton { 
  display: inline-block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 50px;
  margin: 10px;
  background-color: #ffffff00;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.socialbutton:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.socialbutton i {
  display: inline-block;
  margin-right: 1px;
  font-size: 24px;
}

.sociallink {
  display: inline-block;
  width: 450px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin: 10px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: none;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.sociallink::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.sociallink:hover { 
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(206, 109, 109, 0.3);
}

.sociallink i { 
  display: inline-block;
  margin-right: 5px;
  font-size: 24px;
  position: relative;
  left: -30px;
  top: 30%;
  transform: translateY(-50%);
}

h1 {
  font-family: 'Montserrat-Bold';
  font-size: 50px;
  margin-bottom: 20px;
}

p {
  font-family: 'Montserrat-Bold';
  font-size: 24px;
  margin-bottom: 20px;
}

p, h1, .socialbutton, .sociallink, .sociallink:hover, .socialbutton:hover {
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url('Fonts/Montserrat-Bold')
}

/* Responsive Design for Mobile Devices */
@media (max-width: 600px) {

Body {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }

  #portfoliocontainer {
    height: auto;
    min-height: 100vh;
    padding: 20px;
  }

  #minicontainer {
    max-width: 100%;
    padding: 20px;
    padding-right: 10px;
  }

  img[src$='PPP_ICON.png'] {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    border-width: 3px;
  }

  img[src$='verified_icon.png'] {
    width: 22px;
    height: 22px;
    margin-left: -1px;
  }

  h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  #socialbutton{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    justify-items: center;
    max-width: 260px;
    margin: 0 auto 18px;
  }

  #socialbutton .socialbutton:nth-last-child(2) {
    grid-column: 2;
  }
  #socialbutton .socialbutton:last-child {
    grid-column: 4;
  }

  .socialbutton{
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 0;
  }

  .socialbutton i{
    font-size: 20px;
  }
  
  .sociallink {
    width: 100%;
    max-width: 320px;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    border-radius: 10px;
  }

  .sociallink i {
    font-size: 18px;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
}
}