body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f2e6ff; /* Light purple background */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.content {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.infinite-scroll {
    width: 20px;
    height: 100vh; /* Adjust the height as needed */
    background-color: #b26df2; /* Darker purple */
    border-radius: 10px;
    margin-top: 10px;
    position: relative;
}

.vertical-bar {
    width: 100%;
    height: 0;
    background-color: #b26df2; /* Darker purple */
    transition: height 0.5s ease; /* Smooth height transition */
}

/* Hide vertical bar initially */
.infinite-scroll:hover .vertical-bar {
    height: 100%;
}
