* {
    font-family: "Playpen Sans";
    font-weight: normal;
    color: #0b070b;
    text-shadow: none;
}


.playpen-sans-bold {
  font-family: "Playpen Sans", cursive;
  font-optical-sizing: auto;
  font-weight: bolder;
  font-style: normal;
}

body {
    text-shadow: #f8f3f3ad 0px 0px 4px;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    
    background-image: linear-gradient(
        0deg,
        rgb(255, 214, 243) 0%,
        rgb(252, 169, 255) 26%,
        rgb(239, 231, 244) 100%
    );
    
    font-family:
        "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
        Arial, sans-serif;
}
img {
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
}

.cont {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.45);
    background-image: repeating-linear-gradient(
        45deg,
        #be4ead23,
        #be4ead23 15px,
        #bc60ae13 15px,
        #bc60ae13 30px
    );

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.65);

    box-shadow:
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px 0 rgba(0, 0, 0, 0.12),
        0 18px 40px -10px rgba(45, 20, 45, 0.35),
        0 6px 16px 0 rgba(0, 0, 0, 0.15);

    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    width: 90%;
}

h1 {
    margin: 0;
    font-size: 50pt;
    font-weight: bolder;
}

.bignumber {
    font-size: 120pt;
    line-height: 1.1;
}

ul {
    display: inline-block;
    text-align: left; /* Aligns list items neatly while keeping the block centered */
    padding-left: 20px;
    margin-top: 20px;
    font-size: 18pt;
}

.socials {
    margin: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.socials-icon {
    display: inline-flex;
    cursor: pointer;
}

.socials-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.socials-icon-img:hover {
    transform: scale(1.2); /* scaling is cleaner than animating height */
}

.fill-bar-wrapper {
    width: 100%;
    max-width: 100%;
    height: 32px; /* Thickness of the bar */
    background-color: #e5e7eb; /* Neutral track background */
    border-radius: 9999px; /* Pill shape */
    overflow: hidden;
    margin: 24px 0; /* Spacing between sections */
}
:root {
    --fill-percent: 75%;
}

.fill-bar-fill {
    height: 100%;
    width: var(--fill-percent); 
    /* background: linear-gradient(90deg, #ff4500 0%, #ff8c00 45%, #ffc107 100%); */
    background-image: repeating-linear-gradient(
        -25deg,
        #ff00bf,
        #dd00ff 20px,
        #8707ff 20px,
        #7707ff 40px
    );
    border-radius: 9999px;
    transition: width 0.4s ease;
}
