@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(133, 127, 255);
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.head {
    justify-content: center;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    font-size: 3vw;
    background-color: beige;
    color: grey;
    padding: 5px;
    height: 9vw;
    margin-bottom: 40px;
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: moveParticle 5s infinite;
}

@keyframes moveParticle {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}


h1, h2 {
    font-family: 'Cedarville Cursive', cursive;
}

/* Form styles */
.input-container {
    margin-bottom: 20px;
}

input {
    padding: 10px;
    margin: 5px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    width: 200px;
}

button {
    padding: 10px;
    font-size: 16px;
    border: none;
    background-color: #ff7fd6;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

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

/* List styles */
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    background-color: #f0f0f0;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button.remove {
    background-color: red;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

button.remove:hover {
    background-color: darkred;
}

/* Total time section */
#totalTimeContainer {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

footer img.tmdb-logo {
    height: 30px;
    margin-top: 10px;
    vertical-align: bottom;
    margin-left: 5px;
}

footer a {
    text-decoration: none;
    color: inherit;
}
