
html {
    background-color: #946969;
    text-align: center;
}




ul{
    list-style-position: inside;
}
ol{
    list-style-position: inside;
}
#kanye-head{
    position:absolute;
    top:510px;
    left:40%;
    z-index: 500;
}

.kanye-body{
    position:absolute;
    top:500px;
    left:40%;
}

#loveme{
    position:absolute;
    top:800px;
    left:42%;
}
.kanyemouse{
  cursor: url('mouse - Copy.png'), auto;
}

#yes{
    position:absolute;
    top:600px;
    left:30%;
    width: 200px;
    height: 200px;
}

#no{
    position:absolute;
    top:600px;
    left:55%;
    width: 200px;
    height: 200px;
}

#test{
    border: 5px solid black;
    margin: auto;
    width: 50%;
    padding: 10px;
}

.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);
}