@import url('https://fonts.googleapis.com/css2?family=Tektur&display=swap');
body {
    font-family: 'Tektur', cursive;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #570437;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #d82995;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #f307b8;
}

input[type="number"] {
    width: 50%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #f307b8;
    border-radius: 4px;
}

button {
    background-color: #f307b8;
    color: #570437;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #d82995;
}

.rodape__texto{
    color: transparent;
  }
.rodape__texto:hover{
    color: #f307b8;
    text-align: center;
    font-weight: 400;
}

#resultado {
    margin-top: 20px;
    font-size: 1.2em;
    color: #f307b8;
}
/**/
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

body {
    cursor: none; /* Esconde o cursor padrão */
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #d82995;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 5px #DA0789, 0 0 10px #DA0789, 0 0 20px #DA0789, 0 0 40px #DA0789, 0 0 80px #DA0789;
    animation: glow 1s infinite alternate;
}

@keyframes fadeOut {
    to {
        transform: scale(0);
        opacity: 0;
    }
}


