body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 90vh;
	background-color: hsl(210, 60%, 15%);
}

#snowball {
	clip-path: circle(50%);
	width: 200px;
	height: 200px;
}

.snowflake-area {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.05) 60%,
		rgba(255, 255, 255, 0.2) 80%
	);
}

/* Highlights */
.snowflake-area::before {
	content: "";
	filter: blur(1px);
	position: absolute;
	width: 50%;
	height: 30%;
	top: 2%;
	left: 25%;
	border-radius: 50%;
	background-image: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.15),
		rgba(255, 255, 255, 0)
	);
}

/* Reflections */
.snowflake-area::after {
	content: "";
	border-radius: 30%;
	width: 200px;
	height: 200px;
	position: absolute;
	z-index: -1;
	bottom: -100px;
	left: 0px;
	transform: perspective(150px) rotatex(80deg);
	filter: blur(20px);
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.3) 10%,
		hsla(210, 60%, 30%, 0.8) 25%,
		rgba(255, 255, 255, 0.8) 40%
	);
}

button {
	margin-top: 100px;
	background-color: hsla(210, 60%, 100%, 0);
	border: 1px solid hsla(210, 60%, 100%, 0.3);
	color: hsla(210, 60%, 100%, 0.5);
	padding: 8px 16px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	font-size: 0.6em;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 5px;
	transition: 1s;
}

button:hover {
	border: 1px solid hsla(210, 60%, 100%, 0.6);
		color: hsla(210, 60%, 100%, 0.8);
}
/*____________________________________________________________
# Social links
____________________________________________________________*/
/*---- Social Sidebar --- */

.social-icons{
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: white;
}

.icon{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: coral;
  transition: width .5s ease;
  cursor: pointer;
}

.icon:first-child{
  border-top-right-radius: 5px;
}

.icon:last-child{
  border-bottom-right-radius: 5px;
}

.icon:hover{
  width: 60px;
}

.icon.fb{
  background-color: #orange;
}

.icon.tw{
  background-color: #000;
}

.icon.pt{
  background-color: #CD1C1F;
}

.icon.in{
  background-color: #0077B5;
}

.icon.gp{
  background-color: #DD4B39;
}
.social-icons a {
  text-decoration: none; /* Removes the underline on all anchor tags */
}

/* Styling the top bar */
/* Styling the top bar */
.top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed; /* Fix the top bar at the top of the page */
  top: 0; /* Align it to the top */
  left: 0;
  width: 100%; /* Ensure it spans the full width */
  z-index: 9999; /* High z-index to ensure it's on top of other content */
  padding: 1px 0; /* Adjust padding as needed */
}

/* Styling the labels (AiFlock and CA) */
.top-bar label {
  font-size: 36px;
  font-family: 'Press Start 2P', cursive;
  font-weight: bold;
  color: #fcb700;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
  margin: 10px 0;
  animation: fadeIn 2s ease-out;
}

/* Styling the input and button section */
.copy-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-left: 0px;
  animation: scaleIn 1.5s ease-out;
  padding: 1px;
  border-radius: 1px;
}

/* Scale-in animation for the copy section */
@keyframes scaleIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Styling the input field */
.copy-section input {
  font-size: 20px;
  font-family: 'Press Start 2P', cursive;
  padding: 12px 20px;
  margin-right: 15px;
  width: 250px;
  border-radius: 10px;
  outline: none;
  text-align: center;
  background-color: #1e1e1e;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Input hover effect */
.copy-section input:hover {
  background-color: #333;
  border-color: #fcb700;
}

/* Styling the copy button */
.copy-btn {
  cursor: pointer;
  padding: 12px 25px;
  background-color: #fcb700;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-family: 'Press Start 2P', cursive;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Copy button hover effect */
.copy-btn:hover {
  background-color: #ff0066;
  transform: translateY(-4px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
}
