@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: Poppins, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background: url('/imgs/wallllllpaper.jpg') no-repeat center center/cover;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;

}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.header {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}

.header p {
  font-size: 1.2em;
  color: #353839;
  margin: 0;
  padding: 10px;
}

.profile-container {
  width: 80%;
  max-width: 900px;
  height: auto;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  max-height: calc(100vh - 100px);
}
.profile-container a {
  text-decoration: none;
  color: inherit;
  font-size: .88em;
}
.flexin{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: space-evenly;
}
.flexin a, .flexin p {
  padding: .5em;
  font-size: .88em;
}

.pink {
  color: #c5798c;
}

.profile-container a:hover {
  text-decoration: none;
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  color: #366684;
}

.grid-wrapper {
  width: 100%;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  column-count: 3;
  column-gap: 10px;
  padding: 10px;
  background: #f4f4f4;
  border-radius: 10px;
}
.grid-wrapper > div {
  width: 100%;
}
.grid-wrapper > div > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease, z-index 0.3s, filter 0.3s ease;
  border-radius: 8px;
  cursor: pointer;
  padding: 5px;
  z-index: 1;
  position: relative;
}
.grid-wrapper > div:hover > img {
  transform: scale(1.2);
  z-index: 3;
  border-radius: 15px;
  position: relative;
}
.grid-wrapper > div:not(:hover) > img {
  filter: blur(3px);
  opacity: 0.7;
  z-index: 1;
  transition: filter 0.3s ease, opacity 0.3s ease, z-index 0.3s ease;
}
ul:nth-child(1) {
  margin-top: 1em;
}
ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
}
ul li {
  list-style: none;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  animation: grow 1.6s ease-in-out infinite;
}
@keyframes grow {
  0%, 40%, 100% {
    transform: scale(0.2);
  }
  20% {
    transform: scale(1);
  }
}
.italic {
  font-style: italic;
}
ul li:nth-child(1) {
  animation-delay: -1.4s;
  background: #f4bcca;
  box-shadow: 0 0 20px #f4bcca;
}
ul li:nth-child(2) {
  animation-delay: -1.2s;
  background: #b4dcf4;
  box-shadow: 0 0 20px #b4dcf4;
}
ul li:nth-child(3) {
  animation-delay: -1s;
  background: #d0d09c;
  box-shadow: 0 0 20px #d0d09c;
}
ul li:nth-child(4) {
  animation-delay: -0.8s;
  background: #c3f4d6;
  box-shadow: 0 0 20px #c3f4d6;
}
ul li:nth-child(5) {
  animation-delay: -0.6s;
  background: #f4c3e1;
  box-shadow: 0 0 20px #f4c3e1;
}
ul li:nth-child(6) {
  animation-delay: -0.4s;
  background: #f4e1c3;
  box-shadow: 0 0 20px #f4e1c3;
}
ul li:nth-child(7) {
  animation-delay: -0.2s;
  background: #d3c3f4;
  box-shadow: 0 0 20px #d3c3f4;
}
.reverse li:nth-child(1) {
  animation-delay: -0.2s;
  background: #f4bcca;
  box-shadow: 0 0 20px #f4bcca;
}
.reverse li:nth-child(2) {
  animation-delay: -0.4s;
  background: #b4dcf4;
  box-shadow: 0 0 20px #b4dcf4;
}
.reverse li:nth-child(3) {
  animation-delay: -0.6s;
  background: #d0d09c;
  box-shadow: 0 0 20px #d0d09c;
}
.reverse li:nth-child(4) {
  animation-delay: -0.8s;
  background: #c3f4d6;
  box-shadow: 0 0 20px #c3f4d6;
}
.reverse li:nth-child(5) {
  animation-delay: -1s;
  background: #f4c3e1;
  box-shadow: 0 0 20px #f4c3e1;
}
.reverse li:nth-child(6) {
  animation-delay: -1.2s;
  background: #f4e1c3;
  box-shadow: 0 0 20px #f4e1c3;
}
.reverse li:nth-child(7) {
  animation-delay: -1.4s;
  background: #d3c3f4;
  box-shadow: 0 0 20px #d3c3f4;
}
.grid-wrapper {
  --sb-track-color: #fdf0f3;
  --sb-thumb-color: #b4dcf4;
  --sb-size: 10px;
}
.grid-wrapper::-webkit-scrollbar {
  width: var(--sb-size)
}
.grid-wrapper::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.grid-wrapper::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .grid-wrapper {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
body {
  --sb-track-color: #fdf0f3;
  --sb-thumb-color: #b4dcf4;
  --sb-size: 10px;
}
body::-webkit-scrollbar {
  width: var(--sb-size)
}
body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}