body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eaeaea; /* Lighter gray background */
    color: #333;
    overflow-x: hidden; /* Prevents horizontal scrollbar */
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
h1, h2, h3, ul, p, footer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
h1, h2 {
    color: #555; /* Darker gray for headings */
}
h3 {
    color: #777; /* Even lighter gray for sub-headings */
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
li {
    margin-bottom: 10px;
    line-height: 1.6;
}
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.skills-list, .languages-list, .hobbies-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.show {
    opacity: 1;
    transform: translateY(0);
}
.ripple {
    position: fixed;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference; /* This will invert the color based on the background */
}
@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}