.centralized {
  display: flex;
}

.intro-sec {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5rem;
  padding: 2rem;
  background: var(--glass-back);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  min-width: fit-content;
  transition: background 300ms ease;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: anim 1s ease;
}

@keyframes anim {
  from {opacity: 0; transform: translateY(5px);}
  to {opacity: 1;}
}

.bandinfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
}

.imgstats {
  color: var(--normal-txt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 1.2rem;
}

.bandinfo img {
  border-radius: 50px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 150px;
  min-width: 15px;
  transition: 0.35s ease;
}

.bandinfo img:hover {
  border-radius: 100px;
  transform: rotate(360deg);
  filter: contrast(2);
  box-shadow: 0 0 0 0;
  animation: scale 0.35s ease;
}

@keyframes scale {
  0% {transform: scale(0.6);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}

.imgstats ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  margin-bottom: 5px;
}

.imgstats ul li {
  text-wrap: nowrap;
  font-size: 1.65rem;
  font-family: Arial;
}

h2 {
  font-size: 3rem;
  font-family: system-ui;
}

.decp {
  color: var(--normal-txt);
  font-size: 1.55rem;
  font-family: Arial, sans-serif;
  margin: 2rem 0;
  transition: color 300ms ease;
}

#band-title {
  background: var(--linear-txt);
  background-size: 100% 100%;
  background-clip: text;
  color: transparent;
  animation: animtxt 2s ease infinite;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-wrap: nowrap;
}

.anim-txt {
  background: var(--linear-txt);
  background-size: 100% 100%;
  background-clip: text;
  color: transparent;
  animation: animtxt 3s ease-in infinite;
  font-weight: bold;
}

.find-us {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}

.find-us h3 {
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 3rem;
  color: var(--normal-txt);
  transition: color 300ms ease;
}

.find-us ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.find-us ul li {
  font-size: 5.5rem;
  transition: 300ms ease-out;
}

.find-us ul li a {
  filter: drop-shadow(var(--normal-icon-shadow));
  transition: 300ms ease;
}

.find-us ul li:nth-child(1) a {
  color: transparent;
  background: linear-gradient(
  165deg,
  rgb(3, 245, 87) 65%, 
  rgb(0, 0, 0));
  background-clip: text;
}

.find-us ul li:nth-child(2) a {
  background: linear-gradient( #ff4e6b, #ff0436);
  background-clip: text;
  color: transparent;
}

.find-us ul li:nth-child(3) a {
  background: linear-gradient( #f05555, #ff0404);
  background-clip: text;
  color: transparent;
}

.find-us ul li:not(:hover) {
  filter: blur(0.2px);
}

.find-us ul li:hover {
  animation: animIcon 1.25s ease infinite;
}

.find-us ul li:active {
  animation-play-state: paused;
}

/*ANIMATIONS*/

@keyframes animIcon {
  0% {transform: scale(1); filter: opacity(0.15) contrast(1) blur(0);}
  50% {transform: scale(0.5) translateY(22px); filter: opacity(0.4);}
  65% {transform: scale(1.5); filter: opacity(0.15) contrast(3);}
  100% {transform: scale(1); filter: opacity(1);}
}

@keyframes animtxt {
  0% {background-size: 100% 100%;}
  50% {background-size: 400% 100%;}
  100% {background-size: 100% 100%;}
}

/*QUERIES*/

@media (max-width: 800px) {
  .bandinfo {
    width: 90%;
  }
}

@media (max-width: 400px) {
  .decp {
    font-size: 1.25rem;
  }
  .intro-sec {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .find-us h3 {
    font-size: 2rem;
  }
  .find-us ul li {
    font-size: 3rem;
  }
  .intro-sec {
    padding: 1rem;
  }
  #band-title {
    font-size: 2.1rem;
  }
  .imgstats ul li {
    text-wrap: nowrap;
    font-size: 1.35rem;
    font-family: Arial;
  }
  .bandinfo {
    width: 80%;
  }
  .bandinfo img {
    margin-top: 1.5rem;
    width: 75%;
  }
}

@media (max-width: 250px) {
  .intro-sec {
    margin-left: 0.35rem;
    margin-right: 0.35rem;
  }
  .find-us h3 {
    font-size: 1rem;
  }
  .imgstats ul li {
    text-wrap: wrap;
    font-size: 1.15rem;
    font-family: Arial;
  }
}
