@font-face {
    font-family: Poppins;
    src: url(fonts/poppins/Poppins-Regular.ttf);
  }

@font-face {
    font-family: Figtree;
    src: url(fonts/figtree/Figtree-Regular.ttf);
}
.text-containter {
  display: flex;
  flex-direction: column; /* Stack header and paragraph vertically */
  justify-content: center; /* Center text vertically with the image */
}
.gradient-background {
    background: linear-gradient(209deg,deepskyblue,#4ce4b1,#2da982,#3aa5cc,#f5a9b8);
    background-size: 1000% 1000%;
    animation: gradient-animation 12s ease infinite;
  }
  
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .splide__slide img {
    width: 75%;
    height: auto;
  }
body{

font-family: "Poppins","Figtree",Arial, Helvetica, sans-serif;
}

h1,h2,h3,h4,h5,h6{ /* for all titles */
    font-family: "Figtree", "Poppins", Verdana, Geneva, Tahoma, sans-serif;
    line-height: 110%;
    color: #f4f4f4;
}
#title, #typing-text {
    font-size: 2.5vw;
}

.fancy_div {
  height: 2px;
  background-color: #E6E6E6;
  width: 100%;
  margin: 0 auto;
}
a{

    color:#f4f4f4;
}
.selfies {
  align-items: center; /* Center images horizontally */
  margin: 0; /* Remove any default margin */
  margin-right:15%;
  padding: 0; /* Remove any default padding */
}

.selfies img {
  margin: 10px 0; /* Adjust margin to fit your design */
  padding: 0; /* Remove any default padding */
  float: none; /* Ensure the image does not float */
  width: auto; /* Adjust width as needed */
  height: auto; /* Adjust height as needed */
  max-width: 30%; /* Ensure the image does not exceed the container width */
}

/* credits to maroni.dev for this btw :D */
.maroni-div{
    display: flex;
    margin: 0;
    justify-content: center;
    flex-direction: column; 
    align-items: center;    
}

.navbar img:hover {
  transform:rotate(-25deg);
  z-index: 2;
  transition: 0.5s;

}

@media screen and (max-width: 550px) {
    #title, #typing-text {
        font-size: 2rem;
    }
    .fancy_div{
      height: 2px;
      background-color: #E6E6E6;
      width: 100%;
      margin: 0 auto;
      
    }
    #bruh{

font-size:1.2rem;
    }
   #me{

    width:8rem;
    height:8rem;
   }
}

.titlecont{
    display: flex;
    margin-top: 2rem;
    gap: 0.5rem;
}
.splide__slide img {
  width: 70%;
  height: auto;
}
.titlecont img{

  width:20%;
  border-radius:15px;
}

footer{
  padding-top:1.5%;
  background-color: transparent;
text-align:center;
    bottom: 0;
}
.bruh {
  margin-top: 1rem; /* Adjust margin as needed to position the paragraph below the heading */
  color: #f4f4f4; 
  display:inline;
}

p{
color:#f4f4f4;

}

img{

    float:left;
    margin:10px;
}
/* thanks again heath :3*/
.btn {
    display: block; 
    margin: 2rem auto; 
    width: fit-content;  
    background-color: #4CAF50;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #45a049;
}
.links{

  display: flex;
  justify-content: center;
  align-items: center;

}
.imgcontainter{
  width: 50px;
  height:50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Align elements vertically */
 /* background-color: rgba(0, 0, 0, 0.1);*/

}

.navbar {
  /*  background-color: #2d3339; */
   overflow: hidden;
   z-index: 999;
    position: sticky;
    top: 0;
    /* i kinda dont need this anymore, looked buggy. 1/4/24 background-color:#35A6AE;*/
   display: flex;
   flex-direction: column; /* Align elements vertically */
   padding: 0 20px; /* Adjust padding to fit your design */
   justify-content: center; 
   align-items: center; 
   overflow: hidden;

 }
 
 .navbar a {
   display:inline-block;
   color: #f2f2f2;
   text-align: center;
   padding: 14px 16px;
   text-decoration: none;
 }
 
 .social-icons {
   float: right;
 }
 

 .social-icons img {
   width: 20px;
   margin-left: 5px;
 }



  /* stealing gradient background from gtools*/
/*.gradient-background {
  background: linear-gradient(232deg,#F5A9B8,rgb(255,163,163),rgb(232,123,255));
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
} */

/* From Uiverse.io by terenceodonoghue */ 
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    height: 96px;
    width: 96px;
    animation: rotate_3922 1.2s linear infinite;
    background-color: #9b59b6;
    background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
  }
  
  .container span {
    position: absolute;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    background-color: #9b59b6;
    background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
  }
  
  .container span:nth-of-type(1) {
    filter: blur(5px);
  }
  
  .container span:nth-of-type(2) {
    filter: blur(10px);
  }
  
  .container span:nth-of-type(3) {
    filter: blur(25px);
  }
  
  .container span:nth-of-type(4) {
    filter: blur(50px);
  }
  
  .container::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: #fff;
    border: solid 5px #ffffff;
    border-radius: 50%;
  }
  
  @keyframes rotate_3922 {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
  
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  
  /* Loader (Attributed to terenceodonoghue on UIVerse.io) */
  #loader-wrapper {
      background-color: #212121;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
      width: 100%;
      height: 100%;
      text-align: center; }
  
  .loader {
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      height: 96px;
      width: 96px;
      animation: rotate_3922 1.2s linear infinite;
      background-color: #9b59b6;
      background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
  }
  
  .loader span {
      position: absolute;
      border-radius: 50%;
      height: 100%;
      width: 100%;
      background-color: #9b59b6;
      background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
  }
  
  .container span:nth-of-type(1) {
      filter: blur(5px);
  }
  
  .loader span:nth-of-type(2) {
      filter: blur(10px);
  }
  
  .loader span:nth-of-type(3) {
      filter: blur(25px);
  }
  
  .loader span:nth-of-type(4) {
      filter: blur(50px);
  }
  
  .loader::after {
      content: "";
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      bottom: 10px;
      background-color: #fff;
      border: solid 5px #ffffff;
      border-radius: 50%;
  }
  
  @keyframes rotate_3922 {
      from {
          transform: translate(-50%, -50%) rotate(0deg);
      }
  
      to {
          transform: translate(-50%, -50%) rotate(360deg);
      }
  }
  
  
  @keyframes rotation {
      0% {
          transform: rotate(0deg); }
      100% {
          transform: rotate(360deg); } }
  
  
  