html, body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background-color: #479ea9;
  color: #222;
  scroll-behavior: smooth;
  height: 100%; 
    
}

header {
  padding: 1em 0;
  animation: colorChange 6s infinite alternate;
}

@keyframes colorChange {
  0% { background-color: black; }
  25% { background-color: gray; }
  50% { background-color: rgb(110, 118, 126); }
  75% { background-color: darkgray; }
  100% { background-color: darkkhaki; }
}



h1 {
  color: beige;
  text-shadow: 2px 4px 8px rgba(70, 69, 54, 0.6);
}

p {
  background-color: rgba(255, 255, 255, 0.4);
  color: rgb(82, 62, 82);
  padding: 10px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

ul {
  font-family: fantasy;
  list-style: none;
  padding: 0;
}

ul li {
  padding: 4px 0;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor:default;
}
li:hover{
  transform: scale(1.2);
}

iframe {
  border: none;
  width: 80%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

img {
  width: 150px;
  border-radius: 100%;
  margin-top: 20px;
  transition: transform 0.3s ease-in-out;
}

.spin:hover {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

footer {
  background: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 20px 0;
  margin-top: 40px;
}

.neon-flicker {
  color: #fff;
  text-shadow: 0 0 5px #fff,
               0 0 10px #fff,
               0 0 20px #0ff,
               0 0 40px #0ff,
               0 0 80px #0ff;
  animation: neon-flicker-anim 8s infinite;
}

@keyframes neon-flicker-anim {
  0%, 100% { opacity: 1; }
  10%, 30%, 50%, 70%, 90% { opacity: 0.8; }
  20%, 40%, 60%, 80% { opacity: 1; }
}

.flicker {
  animation: flicker 4s linear infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; color: aliceblue; }
}
.div1 {
  position:relative;

  background-color: rgba(109, 109, 109, 0.5);
  padding: 20px;
  margin-top: 20px;
}
.div2 {
  position:relative;

  background-color: rgba(109, 109, 109, 0.5);
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
}
.bubbled {
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 25%),
              radial-gradient(circle at 70% 60%, rgba(255,255,255,0.25) 0%, transparent 30%),
              radial-gradient(circle at 50% 80%, rgba(255,255,255,0.2) 0%, transparent 25%),
              #b0b0b0; /* main gray background */
  background-size: cover;
  border-radius: 20px;
  padding: 100px;
  color: black;
  background: rgba(128, 128, 128, 0.6);
}
.follower {
 position: absolute;
 top:0;
 left: 0;
 width: 50px;
 height: auto;
 pointer-events:none;
 border-radius: 40%;
  margin-top: 40px;
}
#animation .test{
    font-size:1.5rem;
    color: currentColor;
    letter-spacing: 0.06em;
}
#animation .welcome{
  transform:scale(1);
  letter-spacing: 0.06em;

}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.nav-menu {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 10px 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a {
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.nav-menu a:hover::before {
  left: 100%;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.nav-menu a i {
  margin-right: 8px;
  font-size: 0.9em;
}

.home-link {
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.home-link h1 {
  margin: 0;
  font-size: 1.8em;
  transition: all 0.3s ease;
}

.home-link:hover h1 {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
/* create an image that can be dragged and add cursor: grab; for cursor */

.rect{
  transform: scale(1);
}

.gay {
  position:relative;
  top:210px;
  text-align: left;
}
.stickfig {
  
  stroke: black;
  stroke-width: 2;
}

#secretbutton {
  background-color: #ff69b4;
  border-radius: 10px;
 
  
}
#silly{
  background-color: #000000;
  border-radius: 15px;
}

#sadalert{
  position: fixed;
  top: 500px; 
  right: 1%;
  width: 150px;
  height: 100px;
  font-size: 100%;
  background-color: #222;
  color: white;
  opacity: 0.8;
  border-radius: 10px;
  
}
/* .bootstrap{
  
} */






/* code that definetly wasn't copied and is deffinetly very original */
#blackhole {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
}

.centerHover {
    width: 255px;
    height: 255px;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -128px;
    margin-left: -128px;
    z-index: 2;
    cursor: pointer;
    line-height: 255px;
    text-align: center;
    transition: all 500ms;
}

.centerHover.open {
    opacity: 0;
    pointer-events: none;
}

.centerHover:hover span {
    color: #DDD;
}

.centerHover:hover span:before { 
    background-color: #DDD; 
}

.centerHover:hover span:after { 
    background-color: #DDD; 
}

.centerHover span {
    color: #666;
    font-family: serif;
    font-size: 18px;
    position: relative;
    transition: all 500ms;
}

.centerHover span:before {
    content: '';
    display: inline-block;
    height: 1px;
    width: 16px;
    margin-right: 12px;
    margin-bottom: 4px;
    background-color: #666;
    transition: all 500ms;
}

.centerHover span:after {
    content: '';
    display: inline-block;
    height: 1px;
    width: 16px;
    margin-left: 12px;
    margin-bottom: 4px;
    background-color: #666;
    transition: all 500ms;
}

canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: auto;
}

#blackhole {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
}

.centerHover {
    width: 255px;
    height: 255px;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -128px;
    margin-left: -128px;
    z-index: 2;
    cursor: pointer;
    line-height: 255px;
    text-align: center;
    transition: all 500ms;
}

.centerHover.open {
    opacity: 0;
    pointer-events: none;
}

.centerHover:hover span {
    color: #DDD;
}

.centerHover:hover span:before { 
    background-color: #DDD; 
}

.centerHover:hover span:after { 
    background-color: #DDD; 
}

.centerHover span {
    color: #666;
    font-family: serif;
    font-size: 18px;
    position: relative;
    transition: all 500ms;
}

.centerHover span:before {
    content: '';
    display: inline-block;
    height: 1px;
    width: 16px;
    margin-right: 12px;
    margin-bottom: 4px;
    background-color: #666;
    transition: all 500ms;
}

.centerHover span:after {
    content: '';
    display: inline-block;
    height: 1px;
    width: 16px;
    margin-left: 12px;
    margin-bottom: 4px;
    background-color: #666;
    transition: all 500ms;
}

canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: auto;
} 

