html, body {
  height: 100%;
  margin: 0;
  overflow: hidden; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    height: 100vh;
    margin: 0;
}

.scene {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("../images/nomoon.png")no-repeat center bottom;
    background-size: cover;
    overflow: hidden;
}

.overlay{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.planet-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(3.2);
    z-index: 1;
}

/* red planet */
.redmoon {
    width: clamp(140px, 22vmin, 520px);
    height: clamp(140px, 22vmin, 520px);
    object-fit: contain;
    display: block;
    cursor: pointer;
    border-radius: 50%;
    clip-path: circle(50%);
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.redmoon:hover {
    transform: scale(1.08); 
    filter: drop-shadow(0 0 30px rgba(255, 80, 80, 0.8));
}


/*members button */
.rocketbtn{
    position: absolute;

    bottom: 0px;
    left: 0px;
    font-size: 60px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;

}
.rocketbtn img{
    width: 80px;
    height: 80px;
}

.rocketbtn:hover {
    transform: scale(1.3) rotate(5deg);
}
/* button location */
.topButtons {
    position: absolute;
    top:30px;
    right:30px;
    display:flex;
    flex-direction: column;
    gap: 15px;
}

/* buttons */
.btn {
    width: 180px;
    padding: 12px;
    border-radius: 25px;
    background: rgba(182, 41, 41, 0.55);

    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    color: white;
    
}

/* button styles */
.login {
    background: #ffffff;
    color: #333;
}

.signup {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Hover effects */
.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
