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

body {
    width: 100vw;
    height: 100vh;
    font-family: "Courgette", cursive;
    font-size: larger;
    animation: pulse 1s infinite alternate;
    overflow-x: hidden;
}

@keyframes pulse {
        from {
            text-shadow:
            0 0 20px #BF46C3,
            0 0 26px #BF46C3,
            0 0 36px #BF46C3;
        }
        to {
            text-shadow:
            0 0 24px #BF46C3,
            0 0 41px #BF46C3,
            0 0 66px #BF46C3;
        }
    }

@keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1; /* Keep this z-index for background */
}

.main-container {
      position: relative;
      z-index: 1; /* Change this to a lower value than 10 */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;      
      color: #FEE0FF;
      text-align: center;
      background: rgba(0, 0, 0, 0.4);
}

.fadeInFadeOut {
      animation: fadeInOut 3s ease-in-out forwards;
    }

    @keyframes fadeInOut {
      0% { opacity: 0; }
      20% { opacity: 1; }
      80% { opacity: 1; }
      100% { opacity: 0; }
    }

.fadeIn {
    opacity: 0;
    transform: translateY(15px);
}


input, button {
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

button {
    background-color: #BF46C3;
    color: #FEE0FF;
    cursor: pointer;
}

button:hover {
    background-color: #BF46C3;
    box-shadow: #BF46C3 0px 0px 10px, #BF46C3 0px 0px 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

input {
    background-color: #171217;
    color: #BF46C3;
    border: #BF46C3 1px solid;
}

#greetUser {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    animation: pulse 2s infinite alternate;
}

#welcome-container, #nameForm-container, #detailForm-container {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: normal;
}

#horoscope {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
}