/* ------------ */
/* Positioning  */
/* ------------ */

/* Profile Picture & Display Name */
.profile-column {
  position: relative; /* This is needed for absolute positioning of my signature and cx roles */
  text-align: center; /* Centers my screen name */
}

/* ----- */
/* Text  */
/* ----- */

displayname {
  text-shadow: 1px 1px 12px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

/* --------------- */
/* Image Settings  */
/* --------------- */

/* Profile Picture */
.pfp {
  display: block;
  width: 100;
  height: 100;
  max-width: 60%;
}

/* I Love My Wife Award Sticker */
.ilovemywife {
  width: 100;
  height: 100;
  max-width: 10%;
}

/* Crime Free Since 2023 Sticker */
.headphones {
  width: 100;
  height: 100;
  max-width: 20%;
}

/* Meows In A Tone That May Indicate Potential Alleged Gang Affiliations Sticker */
.dancingcat {
  width: 100;
  height: 100;
  max-width: 10%;
}

/* My Signature */
.signature {
  position: absolute;
  top: 80%;
  left: 70%;
  width: 20%;
  height: auto;
  transform: translateY(-50%);
  transform: translateY(-50%) rotate(10deg);
  transition: transform 0.2s ease-in-out;
}

/* My Signature (Mobile) */
@media (max-width: 800px) {
  .signature {
    width: 30%;
    left: 70%;
    top: 60%;
    transform: translateX(20%);
    transform: translateY(-50%) rotate(10deg);
    transition: transform 0.2s ease-in-out;
  }
}

/* God Role */
.godrole {
  position: absolute;
  top: 100%;
  left: 22%;
  width: 25%;
  height: auto;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.5);
}

.godrole:hover {
  box-shadow: 0 0 20px 8px rgba(0, 0, 0, 1);
}

/* God Role (Mobile) */
@media (max-width: 800px) {
  .godrole {
    width: 30%;
    left: 45%;
    top: 80%;
    transform: translateX(20%);
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  }
}

/* Verified Role */
.verifiedrole {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 25%;
  height: auto;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.5);
}

.verifiedrole:hover {
  box-shadow: 0 0 20px 8px rgba(0, 0, 0, 1);
}

/* Verified Role (Mobile) */
@media (max-width: 800px) {
  .verifiedrole {
    width: 30%;
    left: 8%;
    top: 80%;
    transform: translateX(20%);
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
  }
}

.shrinesticker1 {
  width: 100;
  height: 100;
  max-width: 10%;
}

.shrinesticker2 {
  width: 100;
  height: 100;
  max-width: 20%;
}

.circle-container {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}

.circle-gif {
  width: 80%;
  height: 80%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* -------------------------------------------------------- */
/* allegedly - An alternate blockquote optimised for my profile "allegedly" section */
/* -------------------------------------------------------- */

main allegedly {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
  display: inline-block;
  max-width: 100%;
  width: auto;
  position: relative;
  padding-left: 40px;
  white-space: normal;
  overflow: hidden;
  vertical-align: middle;
}

main allegedly img.dancingcat {
  max-width: 10%;
  height: auto;
  position: absolute;
  top: 45%;
  left: 0%;
  transform: translateY(-50%);
  border-radius: 8px;
  z-index: 1;
}

main allegedly p {
  margin-left: 15px;
  line-height: 1.5;
  padding-left: 10px;
}

@media (max-width: 800px) {
  main allegedly {
    display: flex;
    padding: 15px;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-left: 0;
    align-items: center;
  }

  main allegedly img.dancingcat {
    width: 10%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    display: inline-block;
    margin-right: 10px;
  }

  main allegedly p {
    margin-left: 0;
    margin-top: 0;
    line-height: 1.5;
  }
}
  
/* -------------------------------------------------------- */
/* clickable-image - buttons on my profile to my projects  */
/* -------------------------------------------------------- */

 .page-selection {
    all: unset;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-block;
  }

  .page-selection img {
    transition: transform 0.2s ease; /* Smooth transition */
    border-radius: 20px; /* Slight rounding of corners */
  }

  .page-selection:hover img {
    transform: scale(1.05) rotate(2deg); /* Slightly increase size and rotate a little */
  }