* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #040014; /* Cor de fundo escura */
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    color: white;
    position: relative;
}

/* Estilos para as estrelas */
.star {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    animation: twinkle 1.5s infinite alternate; /* Efeito de piscada */
}

/* Animação para dar o efeito de "piscada" nas estrelas */
@keyframes twinkle {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Gerando as estrelas */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgb(255, 255, 255) 20%, transparent 20%), radial-gradient(circle, rgba(255, 255, 255, 0.05) 30%, transparent 30%);
    background-size: 4px 4px, 8px 8px;
    animation: moveBackground 200s linear infinite;
}

/* Animação para o fundo estrelado */
@keyframes moveBackground {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 100% 100%, 100% 100%;
    }
}

/* Estilo para a barra superior com o botão e título */
.cimahome {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    font-size: 2em;
    background-color: #040014;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Estilo do título principal */
.cimahomeh1 {
    position: relative;
    top: -25px;
    font-size: 40px;
    font-weight: bold;
}

/* Estilo do botão */
.Home {
    background-color: #040014;
    border: 0;
    padding: 1px 2px;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    right: 500px;
    top: 35px;
}

.Home:hover {
    background-color: #09002b;
    animation: up 0.2;
}
@keyframes up {
    0%{}
}
/* Estilo da div centralizada */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.centered-div {
    position: relative;
    right: -40px;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    
}

.centered-div h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.centered-div p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
