/*
* LittleLink
* https://littlelink.io
* Free to use under the MIT license
* http://www.opensource.org/licenses/mit-license.php
*/

/* Base Typography Settings
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
	font-size:16px;
}

@import url(//fonts.googleapis.com/css?family=Pacifico);

/* Grid
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container {
	position:relative;
	width:100%;
	max-width:37.5rem;     				/* 600px */
    text-align:center;
	margin:0 auto;
	padding:3rem 1.25rem 0 1.25rem;
	box-sizing:border-box;
}
.container-left {
	position:relative;
	width:100%;
	max-width:37.5rem;
	text-align:left;
	margin:0 auto;
	padding:0 1.25rem;
	box-sizing:border-box;
}
.container-left p {
	margin-bottom: 1rem;  				/* 16px space between paragraphs */
  }
.column {
	position:center;
	width:100%;
	float:center;
	box-sizing:border-box;
}
/* For devices larger than 400px */
  @media (min-width:25rem) {            /* 400px */
    .container {
	width:85%;
	padding-left:0;
	padding-right:0;
}
}/* For devices larger than 550px */
  @media (min-width:34.375rem) {        /* 550px */
    .container {
	width:80%;
}
.column,.columns {
	margin-left:0;
}
.column:first-child,.columns:first-child {
	margin-left:0;
}
}

/* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  body {
	margin:0;
	padding:0;
	background-color:#ffffff;
	color:#1a1a1a;
	font-family:"Open Sans",system-ui;
	font-size:1.125rem;     				/* 18px */
    font-weight:400;
	line-height:1.6;
}

/* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  h1 {
	margin:0 0 0.5rem 0;
	font-size:3rem;         		/* 48px */
    font-weight:800;
	line-height:1;
	letter-spacing:0;
	word-wrap:break-word;
	overflow-wrap:break-word;
	hyphens:auto;           		/* Delete this to remove automatic hyphen on line break */
}
.container p {
	margin:0 0 2rem 0;
}

/* Base Typography Settings
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Base size - 16px browser default */
:root {
  font-size:16px;           /* Using a 1.25 modular scale for typography */
  --scale-0:1rem;           /* 16px */
  --scale-1:1.25rem;        /* 20px */
  --scale-2:1.563rem;       /* 25px */
  --scale-3:1.953rem;       /* 31px */
  --scale-4:2.441rem;       /* 39px */
  --scale-5:3.052rem;       /* 49px */
  
  /* Spacing units */
  --spacing-xs:0.5rem;      /* 8px */
  --spacing-s:1rem;         /* 16px */
  --spacing-m:1.5rem;       /* 24px */
  --spacing-l:2rem;         /* 32px */
  --spacing-xl:3rem;        /* 48px */
  --spacing-xxl:4rem;       /* 64px */
}

/* Avatar */
.avatar {
	width: 8rem;             /* 128px */
	height: 8rem;
	border-radius: 50%;
	object-fit: cover;
	background-position: center;
	margin-bottom: var(--spacing-l);
	margin-left: auto;
	margin-right: auto;
	display: block;
  }

/* Typography Scale */
h1 {
	margin:0 0 var(--spacing-m) 0;
	font-size:var(--scale-5);           /* ~49px */
  	font-weight:800;
	line-height:1.1;
	letter-spacing:-0.02em;
	word-wrap:break-word;
	overflow-wrap:break-word;
}
body {
	font-size:var(--scale-1);           /* 20px */
  	line-height:1.6;
}
.container p {
	font-size:var(--scale-1);
	line-height:1.6;
}

/* Container spacing */
.container {
	padding:var(--spacing-xl) var(--spacing-m) 0 var(--spacing-m);
	text-align:center;
}

/* Footer */
footer {
	margin:var(--spacing-xxl) 0;            /* 4rem (64px) top and bottom */
    font-size:var(--scale-0);
}

/* Responsive adjustments */
@media (max-width:34.375rem) {              /* 550px */
  h1 {
	font-size:var(--scale-4);
}
body {
	font-size:var(--scale-0);
}
.container p {
	font-size:var(--scale-0);
}
.avatar {
	margin-bottom:var(--spacing-m);
}
footer {
	margin:var(--spacing-xl) 0;         	/* 3rem (48px) top and bottom */
}
}

/* Links
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  a {
	color:#2457F5;
	text-decoration:underline;
}
a:hover {
	color:#083BDA;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,button {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:18.75rem;             	/* 300px */
 	min-height:3rem;               /* 48px */
  	padding:0.75rem 1rem;         	/* 12px ; 16px */
  	font-size:1.125rem;           	/* 18px */
  	font-weight:700;
	text-decoration:none;
	white-space:normal;
  	background-color:var(--button-background,transparent);
	color:var(--button-text,#000000);
	border:var(--button-border,none);
	border-radius:0.5rem;
	cursor:pointer;
	box-sizing:border-box;
	hyphens:auto;               	/* Delete this to remove automatic hyphen on line break */
  	margin-bottom:1rem;
	text-align:center;
	line-height:1.3;
}

/* Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon {
	width:1.25rem;
	height:1.25rem;
	margin-right:0.5rem;
	flex-shrink:0;
}

/* Avatar
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.avatar {
	width: 18rem;             /* 128px */
	height: 18rem;
	object-fit: cover;
	background-position: center;
	margin-bottom: var(--spacing-l);
  }

   /* Modifier for no avatar rounding */
   .avatar--none {
	border-radius: 0%;
  }

  /* Modifier for rounded avatar */
  .avatar--rounded {
	border-radius: 50%;
  }
  
  /* Modifier for slightly rounded corners */
  .avatar--soft {
	border-radius: 0.5rem;   /* 8px rounded corners */
  }

/* Theme System
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Light theme is default above */
  
/* Dark theme */
:root.theme-dark {
	color-scheme:dark;
}
:root.theme-dark :focus-visible {
	outline: 2px solid #4899F7;
	outline-offset: 2px;
  }
:root.theme-dark body {
	background-color:#121212;
	color:#ffffff;
}
:root.theme-dark a:not(.button) {
	color:#4899F7;
}
:root.theme-dark a:not(.button):hover {
	color:#7AB8FF;
}

/* Auto theme */
:root.theme-auto {
	color-scheme:light dark;
}
@media (prefers-color-scheme:dark) {
	:root.theme-auto body {
	background-color:#121212;
	color:#ffffff;
}
:root.theme-auto :focus-visible {
    outline: 2px solid #4899F7;
    outline-offset: 2px;
  }
:root.theme-auto a:not(.button) {
	color:#4899F7;
}
:root.theme-auto a:not(.button):hover {
	color:#7AB8FF;
}
}

/* Button Text Color Override
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
    .button:hover,button:hover {
	color:var(--button-text);
}

/* Responsive Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  @media (max-width:34.375rem) {            /* 550px */
    h1 {
	font-size:2rem;                         /* 32px */
	}
	body {
	font-size:1rem;                    		/* 16px */
	}
}

/* Privacy Page Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
nav {
	margin:var(--spacing-l) 0;
	text-align:left;
}
section {
	margin:var(--spacing-xl) 0;
	text-align:left;
}
h2 {
	font-size:var(--scale-3);
	font-weight:700;
	margin-bottom:var(--spacing-m);
}
h3 {
	font-size:var(--scale-2);
	font-weight:600;
	margin:var(--spacing-l) 0 var(--spacing-s) 0;
}
ul {
	list-style:none;
	padding:0;
	margin:0 0 var(--spacing-m) 0;
}
ul li {
	margin-bottom:var(--spacing-xs);
}

/* Privacy page specific responsive adjustments */
  @media (max-width:34.375rem) {
	h2 {
	font-size:var(--scale-2);
	}
	h3 {
	font-size:var(--scale-1);
	}
	section {
	margin:var(--spacing-l) 0;
	}
}

/* Font Face Definitions
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
@font-face {
	font-display:swap;
	font-family:'Open Sans';
	font-style:normal;
	font-weight:400;
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot');
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2') format('woff2'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff') format('woff'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf') format('truetype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg#OpenSans') format('svg');
}
@font-face {
	font-display:swap;
	font-family:'Open Sans';
	font-style:normal;
	font-weight:600;
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.eot');
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.eot?#iefix') format('embedded-opentype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff2') format('woff2'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff') format('woff'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.ttf') format('truetype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.svg#OpenSans') format('svg');
}
@font-face {
	font-display:swap;
	font-family:'Open Sans';
	font-style:normal;
	font-weight:700;
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.eot');
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.eot?#iefix') format('embedded-opentype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2') format('woff2'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff') format('woff'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf') format('truetype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.svg#OpenSans') format('svg');
}
@font-face {
	font-display:swap;
	font-family:'Open Sans';
	font-style:normal;
	font-weight:800;
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.eot');
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.eot?#iefix') format('embedded-opentype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.woff2') format('woff2'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.woff') format('woff'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.ttf') format('truetype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.svg#OpenSans') format('svg');
}


.content-links {
	display: block;
	padding-bottom: 2rem;
}

.follow-section {
	border-style: double;
	border-color: #F3F8FF;
	background: rgba(243, 248, 255, 0.15);
	border-width: 1.5px;
	display: block;
	margin-left: 2rem;
	margin-right: 2rem;
	padding-bottom: 2rem;
}

.nsfw-warning {
	color: #F3F8FF;
	font-style: bold;
}

.nsfw-links {
	border-style: double;
	border-color: red;
	background: rgba(255, 0, 0, 0.5);
	border-width: 1.5px;
	display: block;
	margin-left: 2rem;
	margin-right: 2rem;
	padding-bottom: 2rem;
}

.bottom-icons {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.instagram-icon {
	display: flex;
	padding: 0.5rem;
}

.snapchat-icon {
	display: flex;
	padding: 0.5rem;
}

.reddit-icon {
	display: flex;
	padding: 0.5rem;
}

.tiktok-icon {
	display: flex;
	padding: 0.5rem;
}

.twitter-icon {
	display: flex;
	padding: 0.5rem;
}

.clapper-icon {
	display: flex;
	padding: 0.5rem;
}




.logo {
  text-align: center;
  width: 65%;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  user-select: none;
  font-family: "Pacifico";
  display: block;
}

.logo b{
  color: #fee;
  text-shadow: 0 -40px 100px, 0 0 2px, 0 0 1em #ff4444, 0 0 0.5em #ff4444, 0 0 0.1em #ff4444, 0 10px 3px #000;
}
.logo b span{
  animation: blink linear infinite 2s;
}
.logo b span:nth-of-type(2){
  animation: blink linear infinite 3s;
}
@keyframes blink {
  78% {
    color: inherit;
    text-shadow: inherit;
  }
  79%{
     color: #333;
  }
  80% {
    
    text-shadow: none;
  }
  81% {
    color: inherit;
    text-shadow: inherit;
  }
  82% {
    color: #333;
    text-shadow: none;
  }
  83% {
    color: inherit;
    text-shadow: inherit;
  }
  92% {
    color: #333;
    text-shadow: none;
  }
  92.5% {
    color: inherit;
    text-shadow: inherit;
  }
}



@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #49108b;
    overflow: hidden;
}

.background span {
    width: 20vmin;
    height: 20vmin;
    border-radius: 20vmin;
    backface-visibility: hidden;
    position: absolute;
    animation: move;
    animation-duration: 45;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.background span:nth-child(0) {
    color: #7e30e1;
    top: 47%;
    left: 12%;
    animation-duration: 18s;
    animation-delay: -24s;
    transform-origin: -12vw 2vh;
    box-shadow: 40vmin 0 5.066475826497646vmin currentColor;
}
.background span:nth-child(1) {
    color: #7e30e1;
    top: 62%;
    left: 11%;
    animation-duration: 48s;
    animation-delay: -37s;
    transform-origin: -15vw -11vh;
    box-shadow: -40vmin 0 5.169927746568725vmin currentColor;
}
.background span:nth-child(2) {
    color: #7e30e1;
    top: 49%;
    left: 2%;
    animation-duration: 46s;
    animation-delay: -26s;
    transform-origin: 12vw -14vh;
    box-shadow: -40vmin 0 5.558101536432397vmin currentColor;
}
.background span:nth-child(3) {
    color: #7e30e1;
    top: 92%;
    left: 58%;
    animation-duration: 19s;
    animation-delay: -8s;
    transform-origin: 2vw 12vh;
    box-shadow: -40vmin 0 5.3538774741259285vmin currentColor;
}
.background span:nth-child(4) {
    color: #7e30e1;
    top: 83%;
    left: 61%;
    animation-duration: 15s;
    animation-delay: -40s;
    transform-origin: 8vw -5vh;
    box-shadow: 40vmin 0 5.437272390488205vmin currentColor;
}
.background span:nth-child(5) {
    color: #7e30e1;
    top: 75%;
    left: 81%;
    animation-duration: 23s;
    animation-delay: -13s;
    transform-origin: -16vw 11vh;
    box-shadow: 40vmin 0 5.698717019669617vmin currentColor;
}
.background span:nth-child(6) {
    color: #e26ee5;
    top: 57%;
    left: 82%;
    animation-duration: 42s;
    animation-delay: -48s;
    transform-origin: 19vw 13vh;
    box-shadow: -40vmin 0 5.9199834714162884vmin currentColor;
}
.background span:nth-child(7) {
    color: #7e30e1;
    top: 9%;
    left: 63%;
    animation-duration: 6s;
    animation-delay: -38s;
    transform-origin: 22vw -2vh;
    box-shadow: -40vmin 0 5.945443202949009vmin currentColor;
}
.background span:nth-child(8) {
    color: #f3f8ff;
    top: 55%;
    left: 97%;
    animation-duration: 23s;
    animation-delay: -30s;
    transform-origin: -4vw -12vh;
    box-shadow: 40vmin 0 5.486046951242338vmin currentColor;
}
.background span:nth-child(9) {
    color: #e26ee5;
    top: 43%;
    left: 80%;
    animation-duration: 47s;
    animation-delay: -20s;
    transform-origin: -16vw 19vh;
    box-shadow: -40vmin 0 5.011118404742309vmin currentColor;
}
.background span:nth-child(10) {
    color: #e26ee5;
    top: 80%;
    left: 4%;
    animation-duration: 21s;
    animation-delay: -33s;
    transform-origin: 19vw 12vh;
    box-shadow: -40vmin 0 5.904334036491268vmin currentColor;
}
.background span:nth-child(11) {
    color: #7e30e1;
    top: 100%;
    left: 36%;
    animation-duration: 44s;
    animation-delay: -27s;
    transform-origin: -1vw 8vh;
    box-shadow: -40vmin 0 5.402781571369154vmin currentColor;
}
.background span:nth-child(12) {
    color: #7e30e1;
    top: 58%;
    left: 98%;
    animation-duration: 28s;
    animation-delay: -38s;
    transform-origin: 0vw 17vh;
    box-shadow: 40vmin 0 5.834998070770043vmin currentColor;
}
.background span:nth-child(13) {
    color: #7e30e1;
    top: 8%;
    left: 16%;
    animation-duration: 48s;
    animation-delay: -43s;
    transform-origin: 25vw -9vh;
    box-shadow: -40vmin 0 5.58122898907645vmin currentColor;
}
.background span:nth-child(14) {
    color: #f3f8ff;
    top: 52%;
    left: 58%;
    animation-duration: 44s;
    animation-delay: -22s;
    transform-origin: 19vw 2vh;
    box-shadow: -40vmin 0 5.820320908034338vmin currentColor;
}
.background span:nth-child(15) {
    color: #e26ee5;
    top: 21%;
    left: 75%;
    animation-duration: 37s;
    animation-delay: -14s;
    transform-origin: -22vw 15vh;
    box-shadow: 40vmin 0 5.55417267206304vmin currentColor;
}
.background span:nth-child(16) {
    color: #f3f8ff;
    top: 69%;
    left: 98%;
    animation-duration: 12s;
    animation-delay: -32s;
    transform-origin: 16vw -14vh;
    box-shadow: -40vmin 0 5.36584183335842vmin currentColor;
}
.background span:nth-child(17) {
    color: #e26ee5;
    top: 26%;
    left: 53%;
    animation-duration: 27s;
    animation-delay: -41s;
    transform-origin: 21vw 0vh;
    box-shadow: 40vmin 0 5.911682068925429vmin currentColor;
}
.background span:nth-child(18) {
    color: #e26ee5;
    top: 25%;
    left: 33%;
    animation-duration: 22s;
    animation-delay: -14s;
    transform-origin: -2vw -5vh;
    box-shadow: -40vmin 0 5.975355377886238vmin currentColor;
}
.background span:nth-child(19) {
    color: #7e30e1;
    top: 15%;
    left: 15%;
    animation-duration: 23s;
    animation-delay: -38s;
    transform-origin: 10vw 13vh;
    box-shadow: -40vmin 0 5.009214472839786vmin currentColor;
}
