body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.bullet-points {
    list-style-type: none;
    padding: 0;
}

.bullet-points li {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: transform 0.3s, font-size 0.3s, background-color 1s;
    cursor: pointer;
}

.bullet-points li:hover {
    transform: translateY(-15px) scale(1.1);
    font-size: 20px;
    background-color: #e5b7c8;
}

.bullet-points li:nth-child(odd) {
    animation: slide-in-top 1s forwards;
    animation-delay: calc(0.5s * var(--delay));
}

.bullet-points li:nth-child(even) {
    animation: slide-in-top 1s forwards;
    animation-delay: calc(0.5s * var(--delay));
}

.bullet-points li a {
    color: black; /* Set link text color to black */
    text-decoration: none; /* Remove underline from links */
}

@keyframes slide-in-top {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.footer {
    background-color: #110d25;
    color: white;
    padding: 10px;
    text-align: center;
}

.footer a {
    color: #e5b7c8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #db5f89;
}

#laphi {
    color: #e5b7c8;
    text-decoration: none;
    transition: color 0.3s;
}

#laphi:hover {
    color: #db5f89;
}
