:root {
  --dark-1: #2d343d;
  --dark-2: #232931;
  --dark-3: #1c1d20;
  --white: #d2d9ea;
  --light1: #f8f395;
  --light2: #00fbff;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.hide {
  display: none;
}

html {
  font-size: 50.5%;
  font-family: "Roboto", sans-serif;
  color: var(--white);
}

h1 {
  font-size: 2.4rem;
  font-family: "Josefin Sans", sans-serif;
}

.role-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem 0;
}

.sub-role {
  font-size: 1.6rem;
  font-family: "Bungee Hairline", cursive;
}

h2 {
  font-size: 26rem;
  margin-bottom: 0.8rem;
  line-height: 1;
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  /* -webkit-text-stroke: 1px var(--white);
  color: #00000000; */
  text-shadow: 10px 10px 10px var(--dark-3);
}

h3 {
  font-size: 3.4rem;
  margin-bottom: 2rem;
  font-family: "Bungee Hairline", cursive;
  text-transform: lowercase;
  position: relative;
  text-justify: center;
  font-weight: 900;
}

h4 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  line-height: 3.2rem;
  font-weight: 400;
  padding-bottom: 2rem;
}

p {
  font-size: 2.8rem;
}

ul {
  list-style: none;
  margin-bottom: 4rem;
}

li {
  font-size: 1.6rem;
  margin: 0rem auto;
  font-family: "Josefin Sans", sans-serif;
  transition: all 0.3s cubic-bezier(0.1, 0.5, 0.87, 0.5);
  border: 0rem solid var(--white);
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  /* border-radius: 5px; */
}

li:hover {
  /* box-shadow: 0px 0px 2px 1px var(--white); */
  background-color: var(--dark-1);
}

.link {
  text-decoration: none;
  color: var(--white);
  border-bottom: 3px solid var(--dark-3);
  height: 100%;
  justify-self: center;
  text-align: center;
}

.container {
  display: grid;
  grid-template-columns: 1fr 5fr;
  /* grid-template-columns: 1fr; */
}

.side {
  background: radial-gradient(
    circle at -4% -12.9%,
    var(--dark-2) 0.3%,
    var(--dark-3) 90.2%
  );
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* .back {
  background-color: black;
  width: 100%;
} */

.side-info {
  display: grid;
  gap: 3.5rem;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
}

.photo {
  aspect-ratio: 1/1;
  margin: auto;
  overflow: hidden;
  height: auto;
  /* border-radius: 999px; */
  object-fit: fill;
  border-radius: 0rem;
  box-shadow: 0rem 0.5rem 0.8rem rgba(0, 0, 0, 0.5);
  transition: transform 1s cubic-bezier(0.57, -0.53, 0.33, 0.83);
  transform: translateX(2rem);
}

.photo img {
  width: 100%;
  transition: all 0.3s cubic-bezier(0.57, -0.53, 0.33, 0.83);
}

.social-media-icons {
  display: flex;
  gap: 1.2rem;
  margin: auto;
  margin-top: 2.2rem;
}

.small-icon {
  overflow: hidden;
  border-radius: 0.4rem;
  height: fit-content;
  margin: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 0.6rem;
}

.small-icon img {
  height: 2.4rem;
  margin: 0.8rem;
}

.contact-info p {
  font-family: "Bungee Hairline", cursive;
  font-size: 1.6rem;
  margin-top: 0.6rem;
}

/* /////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////// */

.main {
  background: linear-gradient(
    109.6deg,
    var(--dark-1) 11.2%,
    var(--dark-2) 78.9%
  );
  height: fit-content;
  min-height: 100vh;
  overflow: hidden;
  padding: 8rem 8rem;
}

/* .main::before {
  content: "";
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 20rem;
  background-color: var(--light1); 
  filter: blur(110px);
  mix-blend-mode: soft-light;
  animation: moveBlobs1 15s infinite linear;
  opacity: 0.6;
} */

/* @keyframes moveBlobs1 {
  0% {
    filter: blur(110px);
    opacity: 0.9;
    transform: translate(400%, 75%);
  }
  40% {
    opacity: 0.8;
    filter: blur(50px);
  }
  50% {
    transform: translate(350%, 10%);
  }
  90% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.9;
    filter: blur(110px);
    transform: translate(400%, 75%);
  }
} */
/* .main::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 20rem;
  background-color: var(--light2); 
  filter: blur(100px);
  mix-blend-mode: soft-light;
  animation: moveBlobs2 25s infinite linear;
  opacity: 0.6;
} */
/* 
@keyframes moveBlobs2 {
  0% {
    transform: translate(-220%, 300%);
    opacity: 1;
  }
  34% {
    opacity: 0.1;
  }
  50% {
    transform: translate(-180%, -350%);
    opacity: 1;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-220%, 300%);
  }
}
 */

.content-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  /* gap: 2.8rem; */
}
.content-container-thirds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  /* gap: 2.8rem; */
}

.content-header {
  grid-column: 1 /-1;
  margin-bottom: 1.8rem;
  margin-top: 8rem;
}

.content-header p {
  font-style: italic;
  font-weight: 400;
  margin-top: 0.8rem;
  grid-column: 1 /-1;
  width: 100%;
}
.header-wrapper {
  grid-column: 1 / -1;
  width: 100%;
}

.content-item {
  width: 100%;
  height: 100%;
  grid-column: 1 / -1;
}

.content-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.25);
}

.content-item iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.25);
}
.content-item object {
  width: 100%;
  height: 100%;
  box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.25);
}

.ci-small {
  grid-column: span 1;
}
.ci-thirds {
  grid-column: span 1;
}

/* .ci-big {
  grid-column: span 6;
  grid-row: span 3;
}

.ci-fullvid {
  grid-column: span 6;
  aspect-ratio: 1.75 / 1;
} */

.aboutme-intro {
  font-weight: 400;
  width: 66%;
  margin-bottom: 2rem;
}
.aboutme-header {
  font-family: "Josefin Sans", sans-serif;
  /* font-family: 'Bungee Hairline', cursive;   */
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.aboutme-icons,
.tag-box {
  font-size: 2.2rem;
  /* font-family: 'Josefin Sans', sans-serif; */
  font-family: "Bungee Hairline", cursive;
  text-transform: capitalize;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 8rem;
}

.tag-box {
  margin-bottom: 2rem;
  grid-column: span 2;
}

.aboutme-icon,
.tag {
  border-radius: 5px;
  text-align: center;
  text-justify: center;
  padding: 1.5rem;
  background-color: var(--dark-3);
  width: max-content;
  transition: all 0.2s ease-in-out;
  box-shadow: 5px 5px 10px var(--dark-2);
}

.content-intro {
  font-style: italic;
  font-weight: 400;
}

/* /////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////// */

@media only screen and (max-width: 500px) {
  html {
    font-size: 51%;
  }
  .container {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-template-columns: 1fr; */
  }
  .side {
    height: min-content;
    width: 100vw;
    position: relative;
  }
  h1 {
    margin: 0;
    font-size: 3.2rem;
    grid-column: span 2;
    text-align: left;
    grid-row: 3;
    padding: 0;
  }
  h2 {
    font-size: 10rem;
    padding-top: 3rem;

  }
  .side-info {
    width: 100vw;
    height: min-content;
    margin: 0;
    gap: 0.8rem;
    padding: 0.8rem 1.6rem;
  }
  .intro-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0rem;
    text-align: left;
    justify-content: start;
  }
  .contact-info {
    display: flex;
    grid-column: span 2;
    grid-row: 1;
    padding: 0.8rem 1.6rem;
  }
  .social-media-icons {
    margin-left: 25%;
  }
  .photo {
    grid-row: 1;
    margin: 0;
    padding: 0;
    width: 50%;
  }
  ul {
    display: flex;
    flex-wrap: wrap;
    grid-row: 3;
    grid-column: span 2;
  }
  li {
    padding: 0.8rem 1.6rem;
    width: fit-content;
    text-align: left;
    margin: 0;
  }

  .main {
    padding: 1.6rem 1.6rem;
  }

  .aboutme-intro {
    width: auto;
  }
  .content-header {
    grid-column: span 8;
  }
  .content-item {
    grid-column: span 8;
  }
  .content-container {
    grid-template-columns: 1fr;
  }
}
/* /////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////// */
