<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* POST &amp; PROFILE CODES */
.gap-top {
    margin-top: var(--base-gap) !important;
}
.gap-bottom {
    margin-bottom: var(--base-gap) !important;
}
.big-gap-top {
    margin-top: calc(var(--base-gap)*2) !important;
}
.big-gap-bottom {
    margin-bottom: calc(var(--base-gap)*2) !important;
}
.headliner {
    display: block;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.1em;
    font-family: var(--display-font);
    margin-bottom: var(--base-gap);
}
.headliner span {
    display: block;
    font-family: var(--main-font);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--light);
    margin-top: 5px;
    line-height: 1.1em;
}
.headliner.gap-top {
    margin-top: var(--base-gap);
}
.headliner.big-gap-top {
    margin-top: 30px;
}
.headliner.big-gap-bottom {
    margin-bottom: 30px;
}
.headliner.center {
    text-align: center;
}
.headliner.right {
    text-align: right;
}
.headliner.fancy {
    font-family: var(--deco-font);
    text-transform: capitalize;
}
.headliner.line {
    display: flex;
    flex-direction: column;
}
.headliner.line .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--base-gap);
}
.headliner.line .inner:after {
    content: "";
    display: block;
    height: 1px;
    flex: 1;
    background: var(--light);
}
.headliner.line.right .inner:before {
    content: "";
    display: block;
    height: 1px;
    flex: 1;
    background: var(--light);
}
.headliner.line.right .inner:after {
    display: none;
}
.headliner.line.center .inner:before,
.headliner.line.center .inner:after {
    content: "";
    display: block;
    height: 1px;
    flex: 1;
    background: var(--light);
}
.headliner.small {
    font-size: calc(1em + 2px);
    letter-spacing: 0.08em;
}

.headliner.small2 {
   font: 800 8px var(--main-font);
    line-height: normal;
  color: var(--light);
  text-align: justify;
  text-align-last: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 120%;
}

.headliner.underline {
text-decoration: none;
  color: var(--light2);
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  letter-spacing: 3px;
  font: 700 9px var(--main-font);
  text-transform: uppercase;
  padding: 20px 0 20px 0;
}

.headliner.underline:after {
content: "";
  height: 3px;
  display: inline-block;
  background: var(--color-accent);
  width: 100%;
  margin-top: 10px;
}

.headliner-double {
  text-align: center;
  display: flex;
  width: 100%;
  justify-content: center; /* Center content horizontally */
  position: relative; /* Enables child elements to position absolutely */
}

.headliner-double div {
  position: relative; /* Allows `sub` to position itself relative to this parent */
  padding: 0 30px;
  font: italic 80px var(--display-font);
  text-transform: lowercase;
  -webkit-background-clip: text;
  color: transparent;
  background-color: var(--color-accent);
  white-space: nowrap; /* Prevents line breaks */
}

.headliner-double sub {
  position: absolute; /* Align relative to the parent `div` */
  top: 55%; /* Fine-tuned for better vertical centering */
  left: 50%; /* Horizontally align */
  transform: translate(-50%, -50%); /* Refined to adjust both axes */
  background: var(--darker-medium);
  padding: 5px 10px;
  color: var(--light);
  font: 900 8px var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1; /* Ensure `sub` appears on top */
  white-space: nowrap;
  pointer-events: none; /* Avoid interaction */
}


.headliner-double2 {
  text-align: center;
  display: flex;
  width: 100%;
  justify-content: center; /* Center content horizontally */
  position: relative; /* Enables child elements to position absolutely */
}

.headliner-double2 div {
  position: relative; /* Allows `sub` to position itself relative to this parent */
  padding: 0 30px;
  font: italic 80px var(--display-font);
  text-transform: lowercase;
  -webkit-background-clip: text;
  white-space: nowrap; /* Prevents line breaks */
}

.headliner-double2 sub {
  position: absolute; /* Align relative to the parent `div` */
  top: 55%; /* Fine-tuned for better vertical centering */
  left: 50%; /* Horizontally align */
  transform: translate(-50%, -50%); /* Refined to adjust both axes */
  background: var(--darker-medium);
  padding: 5px 10px;
  color: var(--light);
  font: 900 8px var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1; /* Ensure `sub` appears on top */
  white-space: nowrap;
  pointer-events: none; /* Avoid interaction */
}

.hline {

  margin: 20px auto 20px auto;
  min-height: 100px;
  width: 1px;
  background: var(--color-accent);
  display: block;
}	
	


.quoting {
    float: left;
    text-transform: uppercase;
    font-family: var(--main-font);
    line-height: 1.2em;
    letter-spacing: 0.04em;
}
.quoting.right {
    float: right;
}
.quoting.style-1 {
    max-width: 40%;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    padding-right: var(--base-gap);
    margin-right: var(--base-gap);
    border-right: 1px solid var(--medium);
    padding-top: var(--base-gap);
    padding-bottom: var(--base-gap);
}
.quoting.style-1.right {
    float: right;
    text-align: left;
    margin-right: unset;
    padding-right: unset;
    border-right: unset;
    margin-left: var(--base-gap);
    padding-left: var(--base-gap);
    border-left: 1px solid var(--medium);
}
.quoting.style-2 {
    position: relative;
    padding: 30px var(--base-gap) 30px 50px;
    max-width: 40%;
    font-size: 11px;
    font-weight: 700;
    margin-right: var(--base-gap);
    text-align: right;
    z-index: 2;
}
.quoting.style-2:after {
    content: "Quote";
    display: block;
    font-family: var(--display-font);
    color: var(--darker-medium);
    font-size: 40px;
    position: absolute;
    left: 30px;
    bottom: 35px;
    z-index: -1;
}
.quoting.style-2.right {
    text-align: left;
    padding: 30px 50px 30px var(--base-gap);
    margin-right: unset;
    margin-left: var(--base-gap);
}
.quoting.style-2.right:after {
    right: 30px;
    left: unset;
}
.quoting.style-3,
.quoting.style-4 {
    float: none;
    font-family: var(--display-font);
    font-size: 11px;
    font-weight: normal;
    text-align: center;
    max-width: 70%;
    margin: 0 auto var(--base-gap);
}
.quoting.style-4 {
    font-family: var(--main-font);
}
.quoting.style-3.add-lines,
.quoting.style-4.add-lines {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--base-gap);
}
.quoting.style-3.add-lines .inner,
.quoting.style-4.add-lines .inner {
    flex: 3;
}
.quoting.style-3.add-lines:before,
.quoting.style-3.add-lines:after,
.quoting.style-4.add-lines:before,
.quoting.style-4.add-lines::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    flex: 1;
    background: var(--light);
}


.quoting.style-6 {
		float:none;
  margin: 0 100px 0 100px;
  font: italic 40px var(--display-font);
  line-height: normal;
  text-align: center;
  text-transform: lowercase;
  line-height: 80%;
  position: relative; /* Ensures stacking context for pseudo-element */
}

.quoting.style-6:after {
  content: "";
  margin: 50px auto;
  height: 400px;
  width: 1px;
  background: var(--color-accent);
  display: block;
}

.quoting.style-6-clear {
  clear: both; /* Forces elements below this to appear after */
  display: block;
}

.quoting.style-7{
	float:none;
}
.quoting.style-7 div {
		float:none;
  margin: auto 112px 10px 107px;
  text-align: center;
  position: relative;
  font: 28px var(--display-font);
  letter-spacing: 2px;
  isolation: isolate;
  color: var(--light);
 text-transform: none;
    line-height: 26px;
    letter-spacing: 0.04em;
}

.quoting.style-7 span {
  display: block;
  text-transform: uppercase;
  margin-top: 20px;
  text-align: center;
  font: 800 15px var(--main-font);
  letter-spacing: 1px;
  color: var(--light);
	margin-top:45px;
}

.quoting.style-7 div i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0.5;
  font-size: 5em;
  z-index: -1;
  font-style: normal !important;
  color: var(--color-accent);
}

.quoting.style-7 b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  -webkit-background-clip: text;
  color: transparent;
  background-color: var(--color-accent);
	text-transform: uppercase;
}

.quoting.style-8 {
		float:none;
font: 20px var(--display-font);
  letter-spacing: 1px;
  color: var(--light);
}	

.quoting.style-8 h12 {
  margin: 0;
  letter-spacing: 7px;
  font: 700 50px var(--display-font);;
  color: var(--light);
  text-transform: uppercase;
background: linear-gradient(to right, var(--color-accent) 50%, transparent 50%);
background-size: 100% 10px;
background-position: bottom;
background-repeat: no-repeat;
background-position: bottom left, bottom right; /* Position one on each side */
}

.quoting.style-8 span {
  display: flex;
  gap: 20px;
  font: 700 16px var(--main-font);
  text-transform: uppercase;
  letter-spacing: 2px;
  align-items: center;
 margin-top:-10px;
}

.quoting.style-8 span b {
  -webkit-background-clip: text;
  color: transparent;
  background-color: var(--color-accent);
}
.quoting.style-9 {
	float:none;
margin: 70px 150px 10px 150px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  font: 700 20px var(--display-font);
    line-height: normal;
  line-height: 140%;
  color: var(--light);
	}
	
.quoting.style-9 span {
  text-transform: uppercase;
  font: 800 12px var(--display-font);
  color: transparent;
  -webkit-background-clip: text;
  display: inline-block;
  background-color: var(--color-accent);
  letter-spacing: 1px;
}	

.quoting.style-9 i {
  display: block;
  background: var(--color-accent);
  font-size: 25px;
  border-radius: 100%;
  padding: 15px;
  color: var(--light);
  font-style: normal;
}
	
/* ANNE CODES */
.keywords.style-1{padding: 11px 0px;gap: 10px;}
.keywords.style-1 div {
  line-height: 1;
  flex-grow: 1;
  background: var(--bg-blur);
  background-attachment: fixed;
  border: unset;
  padding: 16.2px;
  font-size: 9px;
  letter-spacing: 1px;
}

.quoting.style-5{
  background: var(--bg-blur);
  padding: 25px;
  background-attachment: fixed;
  outline: 2px solid var(--light);
  border: 25px solid transparent;
  outline-offset: -25px;
  font-size: 8px;
  color: var(--light);
  line-height: 1.9em;
  letter-spacing: 2px;
  text-align: justify;
  width: 300px;
  font-weight: 600;
	margin: 10px 20px 0 0px;
}
.quoting.style-5.right {margin: 10px 0px 0 20px;}

/* END ANNE CODES */
	
.text-image {
    float: left;
    max-width: 40%;
    border: 1px solid var(--darker-medium);
    padding: 10px;
    position: relative;
    margin-right: var(--base-gap);
    z-index: 2;
}
.text-image.right {
    float: right;
    margin-right: 0;
    margin-left: var(--base-gap);
}
.text-image.top-gap {
    margin-top: var(--base-gap);
}
.text-image.bottom-gap {
    margin-bottom: var(--base-gap);
}
.text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.text-image.inset-border {
    border: none;
    padding: 0;
}
.text-image.inset-border:after {
    content: "";
    display: block;
    border: 2px solid var(--light);
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px - 2px);
    height: calc(100% - 20px - 2px);
    z-index: 2;
}
.text-image.grayed {
    filter: grayscale(1);
}
.text-image.species-coloring img,
.text-image.species-colored img{
    filter: grayscale(1);
    z-index: 1;
}
.text-image.species-coloring:before,
.text-image.species-colored:before{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    z-index: 2;
    mix-blend-mode: overlay;
}
.text-image.species-coloring.multiplied:before,
.text-image.species-colored.multiplied:before{
    mix-blend-mode: multiply;
}
.text-image.inset-border.species-coloring:before,
.text-image.inset-border.species-colored:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* HELPER CLASSES */
hr {
    display: block;
    margin: var(--base-gap) 0;
    background: var(--darker-medium);
    height: 1px;
    width: 100%;
}

.small-heading {
	position: relative;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 0.04em;
	margin-bottom: 32px;
	width: max-content;
	font-family: var(--main-font);
}
.small-heading:after {
	content: "";
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--light);
	display: block;
}

.small-margin-top {
	margin-top: var(--base-gap);
}

.small-margin-bottom {
	margin-bottom: var(--base-gap);
}

.underline-headline {
	position: relative;
	font-family: var(--display-font);
	text-transform: uppercase;
	font-size: 18px;
	line-height: 1.1em;
	width: max-content;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--light);
	margin-bottom: var(--base-gap);
}

.arrow-button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--color-accent);
	cursor: pointer;
	transition: color 0.3s ease;
}
.arrow-button.align-right {
	justify-content: flex-end;
}
.arrow-button:hover {
	color: var(--secondary);
}
.arrow-button:before {
	content: "âž”";
	color: var(--light);
	display: block;
	margin-right: 0.3em;
}

.other-link ,
a.other-link {
	color: var(--light);
	transition: color 0.3s ease;
}
.other-link:hover,
a.other-link:hover {
	color: var(--secondary);
}

.player-name {
	font-family: var(--display-font);
	font-size: 24px;
	line-height: 1em;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: var(--base-gap);
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: var(--base-gap);
	justify-content: space-between;
}
.keywords.left {
	justify-content: flex-start;
}
.keywords &gt; div {
    flex: 1;
    border: 1px solid var(--medium);
    text-transform: uppercase;
    color: var(--light);
    padding: 10px 15px;
    text-align: center;
    font-size: 11px;
    white-space: nowrap;
}
.keywords.shortened {
    justify-content: left;
}
.keywords.shortened &gt; div {
    flex: none;
}
.keywords &gt; div.button a {
    color: var(--light);
}
.keywords &gt; div.button:hover a {
    color: var(--secondary);
}

.margin-top {
	margin-top: 30px;
}
.margin-bottom {
	margin-bottom: 30px;
}

body.scroll-down .back-to-top,
body.scroll-up:not(.scroll-active) .back-to-top {
	opacity: 0;
	pointer-events: none;
}

.back-to-top {
	pointer-events: initial;
    position: fixed;
    right: var(--base-gap);
    bottom: var(--base-gap);
    width: 30px;
    height: 30px;
    aspect-ratio: 1 / 1;
	transition: opacity 0.3s ease, pointer-events 0.3s ease;
}
.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--secondary);
    padding: 5px;
    border: 1px solid var(--secondary);
    transition: border 0.3s ease, color 0.3s ease;
}
.back-to-top a:hover {
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.tabs ul {
	list-style-type: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--base-gap);
	margin: 0;
	padding: 0;
}
.tabs a i {
	color: var(--light);
	transition: color 0.3s ease;
}
.tabs .ui-tabs-active a {
	border: 1px solid var(--secondary);
	color: var(--secondary);
}
.tabs .ui-tabs-active a i {
	color: var(--secondary);
}
.tabs a {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--light);
	color: var(--light);
	font-size: 16px;
	padding: 5px;
	min-width: 35px;
	min-height: 35px;
	aspect-ratio: 1 / 1;
	transition: color 0.3s ease, border 0.3s ease;
}
.tabs a:hover {
	border: 1px solid var(--secondary);
	color: var(--secondary);
}
.tabs a:hover i {
	color: var(--secondary);
}

.texting {
	 font-size: var(--textsize);
	line-height: 1.4em;
	letter-spacing: normal;
	 color: var(--fontcolor);
	 max-width: var(--screenwidth);
	 width: 100%;
	 margin: 0 auto;
}
.texting br {
	display: none;
}
 .texting .recipient {
	 display: flex;
	 flex-wrap: wrap;
	 line-height: 1em;
	 justify-content: space-between;
	 align-items: center;
	 padding: 10px;
	 color: var(--infobar-fontcolor);
	 background: var(--infobar-bg);
	 font-weight: 700;
}
.texting .recipient br {
	display: none;
}
 .texting .recipient .first, .texting .recipient .second {
	 display: flex;
	 align-items: center;
	 gap: 5px;
}
 .texting .profilepic {
	 overflow: auto;
	 max-width: 30px;
	 max-height: 30px;
	 border-radius: 50%;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 .texting .profilepic .profilepic img {
	 width: 20px;
	 height: 20px;
	 object-fit: cover;
	 object-position: center;
}
 .texting .link {
	 color: var(--links);
	 text-decoration: none;
	 cursor: pointer;
}
 .texting img {
	 max-width: 100%;
}
 .texting .text-window {
	 background: var(--background);
	 background-position: center;
	 background-size: cover;
	 height: var(--screenheight);
	 overflow: auto;
	 display: flex;
	 flex-direction: column;
	 gap: 5px;
	 padding: 20px;
}
 .texting .bubble {
	 max-width: 60%;
	 width: 100%;
	 background: var(--recipient);
	 padding: 10px;
	 position: relative;
	 margin-right: auto;
	 margin-bottom: 10px;
	 border-radius: 5px;
}
.texting .bubble br {
	display: block;
}
 .texting .bubble:after {
	 content: "";
	 position: absolute;
	 pointer-events: none;
	 top: calc(100% - 5px);
	 left: 0;
	 width: 10px;
	 height: 15px;
	 aspect-ratio: 1;
	 clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
	 background: var(--recipient);
	 display: block;
}
 .texting .bubble.right {
	 margin-left: auto;
	 margin-right: 0;
	 background: var(--sender);
}
 .texting .bubble.right:after {
	 content: "";
	 right: 0;
	 left: unset;
	 clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
	 background: var(--sender);
}

.modcp-awardrequest-btn {
	 display: flex;
	 align-items: center;
	 flex-wrap: wrap;
	 gap: 10px;
	 margin-bottom: 20px;
}
.modcp-awardrequest-btn button,
.modcp-awardrequest-btn input.button {
	 flex: 1;
}

.pride-event:before, .pride-event:after {
	display: inline-block;
	background: linear-gradient(100deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
	background-size: 400%;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: rainbow 5s linear 0s infinite alternate;
	animation-fill-mode: both;
}
@keyframes rainbow {0% {background-position: left center;} 100% {background-position: right center;}}

.fateddraw:before, .fateddraw:after {
	display: inline-block;
	background: linear-gradient(114.95deg, rgba(235, 0, 255, 0.5) 0%, rgba(0, 0, 0, 0) 38.87%), linear-gradient(180deg, #004B5B 0%, #FFA7A7 100%), linear-gradient(244.35deg, #FFB26A 0%, #3676B1 50.58%, #00A3FF 100%), linear-gradient(244.35deg, #FFFFFF 0%, #007089 49.48%, #FF005C 100%), radial-gradient(100% 233.99% at 0% 100%, #6D3B00 0%, #8FFF00 100%), linear-gradient(307.27deg, #219D87 0.37%, #93C32E 50.19%, #2800C6 100%), radial-gradient(100% 140% at 100% 0%, #FF00C7 0%, #006C7A 49.48%, #760000 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.user-text li {
background: var(--bg-blur);
height:30px;
margin-bottom:5px;
}

.special-image1 {
  text-align: center;
  margin: auto;
width: 320px;
  height: 431px;
  border-radius: 360px 360px 0 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 40px;
}

.special-image1 div {
   background-size: cover;
  background-position: center; /* Centers the image within the element */
width: 276px;
  height: 370px;
  border-radius: 360px 360px 0 0;
  background-repeat: no-repeat; /* Prevents the background from repeating */
  overflow: hidden; /* Ensures the image doesn't exceed the rounded edges */
}

.special-image2 {
    float: left;
    max-width:40%
    border: 1px solid var(--darker-medium);
    padding: 10px;
    border-radius: 360px 360px 0 0;
    background-size: cover;
    position: relative;
    overflow: hidden; /* Ensures content stays within the border */
    margin-right: var(--base-gap);
    z-index: 2;
    display: flex; /* Allows alignment of the image inside */
    align-items: center; /* Centers the image vertically */
    justify-content: center; /* Centers the image horizontally */
}

.special-image2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fits the container */
    object-position: center; /* Centers the image */
    border-radius: 360px 360px 0 0; /* Matches the parent's border radius */
}

.special-image2.right {
    float: right;
    margin-right: 0;
    margin-left: var(--base-gap);
}


.color-palette1 {
margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}	


.color-palette1 div {
     width: 60px;
     height: 60px;
}

.color-palette2 {
margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}	
.color-palette2 div {
     height: 50px; /* adjust to control the size  */
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% -50%,100% 50%,50% 150%,0 50%);

}

.color-palette3 {
margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}	
.color-palette3 div {
     border-radius: 100%;
     width: 60px;
     height: 60px;
}

.color-palette4 {
margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}	
.color-palette4 div {
     width: 50px;
     height: 50px;
     transform: rotate(135deg);
}


.color-palette5 {
margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}	


.color-palette5 div {
     width: 20px;
     height: 20px;
}

.color-palette6 {
margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}	
.color-palette6 div {
      height: 20px; /* adjust to control the size  */
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% -50%,100% 50%,50% 150%,0 50%);
}

.color-palette7 {
margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}	
.color-palette7 div {
     border-radius: 100%;
     width: 20px;
     height: 20px;
}

.color-palette8 {
margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}	
.color-palette8 div {
     width: 20px;
     height: 20px;
     transform: rotate(135deg);
}</pre></body></html>