@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;700;&display=swap" );
body {
    background: #000000;
    color: #fff;
    font-family: 'Poppins',sans-serif;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

    body.light-mode {
        background: #000000;
        color: #000000;
    }

section {
    margin: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 60vh;
    background: #000000;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 2rem;
    transition: box-shadow 0.3s;
}
section:hover {
    box-shadow: 0 16px 40px 0 rgba(31,38,135,0.37);
}

body.light-mode section {
    background: #000000;
    color: #000000;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.07);
    border: 1px solid rgba(31,38,135,0.07);
}

pre
{
    font-family: 'Poppins',sans-serif;
}
.colorchange {
    font-size: 50px;
    background: #000000;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

body.light-mode .colorchange {
    background: #000000;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.FadeIn {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(5px);
    transition: all 1s cubic-bezier(.77,0,.18,1);
}
.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.flex-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

img.FadeIn {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    transition: transform 0.4s, box-shadow 0.4s;
}
img.FadeIn:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.light-mode img.FadeIn {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

div.Scroll
{
margin-left:0px;
padding-left:3px;
height:93%;
overflow:auto;

}

div.Fix
{
height:30px;
width:100%;
padding-left:3px;
margin: 3%;
}

.container {
    position: relative;
    text-align: center;
    color: white;
  }
  /*https://www.w3schools.com/howto/howto_css_image_text.asp*/
  /* Bottom left text */
  .bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
  }
  
  /* Top left text */
  .top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }
  
  /* Top right text */
  .top-right {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  
  /* Bottom right text */
  .bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }
  
  /* Centered text */
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .top-centered {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

::-webkit-scrollbar {
    width: 8px;
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #e52e71;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .colorchange { font-size: 32px; }
    section { margin: 2%; min-height: 40vh; }
    img.FadeIn { margin-bottom: 40px !important; }
}

@media (max-width: 600px) {
    .colorchange { font-size: 22px; }
    section { margin: 1%; min-height: 20vh; }
    .Fix { font-size: 18px; }
}