


header {
  width: 100%;
  background:rgb(236, 134, 236);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: black; /* Kidney theme color */
}

.nav-links {
  list-style: none;
  display: flex;
  gap:25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
font-weight: bold;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #000000;
  text-decoration: underline;
  border: 2px solid mediumslateblue;
  background-color: white;
}

.btn {
  padding: 8px 15px;
  background: #c4004a;
  color: #fff !important;
  border-radius: 5px;
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 65px;
    right: -100%;
   background: linear-gradient(135deg, #68e6eb 50%, #eeec83 50%);
    width: 250px;
    height: 100vh;
    flex-direction: column;
    padding-top: 40px;
    gap:25px;
    text-align: left;
    transition: 0.4s;
    padding-left: 25px;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-icon {
    display: block;
  }
}





.nop{width: 270px;
height: 100px;
object-fit: contain;
filter: brightness(100%);}










































.seat{display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
gap: 30px;
margin-top: 150px;
background: linear-gradient(lime,skyblue);}



h1{text-align: center;
border: 3px solid black;

background: linear-gradient(white,rgb(250, 114, 250));
border-radius: 5%;}

.near{width: 390px;}

.yop{width: 350px;
    height: 350px;
object-fit: contain;
filter: brightness(110%);}


body{background-image: url(https://quntan.neocities.org/image.png/SLA-java-background.png);
  background-repeat: repeat;
}


dt{font-size: 18px;
font-weight: bold;
color: #000;}

dd{padding: 15px;}


.paper{display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: 20px;
margin-top: 150px;}

.road{width: 420px;
background-color: white;}

.sole{width: 250px;}

.moim{width: 250px;
object-fit: contain;
filter: brightness(110%);}



.road{
  margin: 0 auto;
  width: 420px;
   
 
  padding: 2em;
  text-align: center;
  border-radius: 20px;
  position: relative;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.road::after, .road::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #f802c3, #04b904, #006aff, #f70592, #ff4545);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}
.road::before{
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}


.sole{
  margin: 0 auto;
  width: 250px;
   background-color:white;
 
  padding: 2em;
  text-align: center;
  border-radius: 20px;
  position: relative;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.sole::after, .sole::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle),  #04b904, #006aff, #ec0909);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}
.sole::before{
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}