body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    height: 100%;

}

.star-background {
    position: relative;
    width: 100%;
    height: 100vh;
    background: 
              url('../images/background.jpg');
  background-size: cover; /* Faz com que a imagem cubra toda a área */
  background-position: center; /* Centraliza a imagem */
  background-repeat: no-repeat; /* Evita repetição */
  color: #ffffff; /* Garante que o texto seja legível (branco) */

    overflow: hidden;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
}

.link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.link:hover {
    background-color: #0056b3;
}

.intro-text {
    font-size: 24px;
    line-height: 1.5;
    margin: 20px auto;
    padding: 10px 20px;
    max-width: 600px;
    text-align: center;
    color: #000; /* Um amarelo dourado para dar destaque */
    background: linear-gradient(90deg, #fff, #fff, #fff); /* Fundo com gradiente */
    border: 2px solid #ffd700; /* Borda dourada */
    border-radius: 15px; /* Cantos arredondados */
  /*  box-shadow: 0px 0px 15px 5px #ffd700;*/ /* Adiciona um brilho dourado ao redor */
    /*animation: glow 2s infinite alternate;*/ /* Animação de brilho */
}

/* Animação de brilho */
/*@keyframes glow {
    from {
        box-shadow: 0px 0px 10px 3px #ffd700;
    }
    to {
        box-shadow: 0px 0px 20px 8px #ffd700;
    }
}*/

.sky-star {
    position: absolute;
    background-color: #d8dbe0; /* Cor da estrela */
    border-radius: 50%; /* Faz a estrela ser circular */
    box-shadow: 0 0 5px white; /* Adiciona um brilho às estrelas */
}


/* Star Animation */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: moveStar 10s linear infinite;
}

@keyframes moveStar {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(50px);
        opacity: 0;
    }
}




     .container {
            text-align: center;
        }
        .logo {
            width: 300px;
            height: auto;
            margin-bottom: 20px;
        }
        .link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 18px;
            color: #fff;
            background-color: #732673;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .link:hover {
            background-color: #ac39ac;
        }
        .intro-text {
            font-size: 20px;
            margin-bottom: 20px;
        }
        
/* estrela cadente */
/* Planetas */
.planet {
    position: absolute;
    border-radius: 50%; /* Faz os planetas redondos */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Adiciona brilho ao redor */
}

/* Estrelas cadentes */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 50px;
    background: linear-gradient(90deg, white, transparent);
    transform: rotate(45deg);
    animation: shoot 2s linear;
}

@keyframes shoot {
    from {
        transform: translate(-100px, -100px) rotate(45deg);
    }
    to {
        transform: translate(200px, 200px) rotate(45deg);
        opacity: 0;
    }
}