:root{
  --prim-col : #3681f9;
  --sec-col : #62eff6;
  --th-col : #fff;
  --faded-col : #ffffff53;
  --option-col : #042d6f;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
}
body,
html {
  height: 100vh;
  width: 100%;
  background-color: var(--bg-color);
  line-height: 1.5;
  scroll-behavior: smooth;
}
header{
  width: 100%;
  position: absolute;
  height: 100px;
  padding: 1rem 0.5rem;
}
a {
  text-decoration: none;
}

.pokeahoe_social_container {
  min-height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(#101010,#000000);
  /* background: url("./assets/bg.jpg");
  background-size: cover;
  background-position: center; */
  padding: 2rem 1rem;

}

.pokeahoe_profile {
  width: 150px;
  margin: auto;
  display: block;
}
.headline{
  color: var(--th-col);
  font-size: clamp(20px,4rem,5rem);
  text-align: center;
  color: #ffcb05ff;
}
.headline.sub{
 font-size: clamp(15px,1.5rem,2.5rem);
 line-height: unset;
 color: #fff;
}
.pokeahoe_social_wrapper {
  width: min(600px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;

}
.social_profile_heading,
.social_profile_bio {
  text-align: center;
}
.social_link_wrapper{
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.pokeahoe_social_links {
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3,minmax(min(10px,100%),1fr));
  gap: 0.7rem;
}
.pokeahoe_social_links_item {
  padding: 0.7rem;
  border-radius: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: url(./assets/wrapper.png);
  background-size: cover;
  background-position: center;
  aspect-ratio: 1/1;
}


.pokeahoe_social_links_icon {
  width: 50%;
  /* width: clamp(18px,1.5rem,100%); */
}
.socail_link_title{
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 960px) {
  /* .pokeahoe_social_container{
    background: url("./assets/bg_port.jpg");
      background-size: cover;
  background-position: center;
  } */
  .headline{
  font-size: clamp(35px,3rem,4rem);
}
}