/* Assets/CSS/styles.css */

body {
    background-color: #121212; /* Dark background */
    color: white;              /* Light text */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrollbars due to overflowing images */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.custom-image {
    position: absolute;
    width: 50px; /* Adjust the size of your custom images here */
    height: 50px; /* Adjust height if necessary */
    animation: floatUp 10s linear forwards; /* Ensure images move for full 10 seconds */
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh); /* Start below the screen */
        opacity: 1; /* Fully visible */
    }
    80% {
        opacity: 1; /* Stay visible until about 80% up the screen */
    }
    100% {
        transform: translateY(-100vh); /* Move all the way to the top */
        opacity: 0; /* Fade out as they reach the top */
    }
}

button {
    background-color: #444;
    color: white;
    border: none;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

#hearts-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
