html, body {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: 
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 10px, transparent 10px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 10px, transparent 10px, transparent 20px),
        linear-gradient(135deg, #2d6a5a, #3d8b73, #2d6a5a, #1a4d3e);
    background-size: auto, auto, 400% 400%;
    background-color: #2d6a5a;
    animation: gradientShift 15s ease infinite;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' opacity='0.08'%3E%3Cpath fill='white' d='M18,25.9c-1.1,0-2-.9-2-2v-13.9c0-4.4,3.6-8,8-8s8,3.6,8,8v2c0,1.1-.9,2-2,2s-2-.9-2-2v-2c0-2.2-1.8-4-4-4s-4,1.8-4,4v13.9c0,1.1-.9,2-2,2Z'/%3E%3Cpath fill='white' d='M24,46c-4.4,0-8-3.6-8-8v-2c0-1.1.9-2,2-2s2,.9,2,2v2c0,2.2,1.8,4,4,4s4-1.8,4-4v-14c0-1.1.9-2,2-2s2,.9,2,2v14c0,4.4-3.6,8-8,8Z'/%3E%3Cpath fill='white' d='M24,32h-14c-4.4,0-8-3.6-8-8s3.6-8,8-8h2c1.1,0,2,.9,2,2s-.9,2-2,2h-2c-2.2,0-4,1.8-4,4s1.8,4,4,4h14c1.1,0,2,.9,2,2s-.9,2-2,2Z'/%3E%3Cpath fill='white' d='M38,32h-1.9c-1.1,0-2-.9-2-2s.9-2,2-2h1.9c2.2,0,4-1.8,4-4s-1.8-4-4-4h-14c-1.1,0-2-.9-2-2s.9-2,2-2h14c4.4,0,8,3.6,8,8s-3.6,8-8,8Z'/%3E%3C/svg%3E");
    background-size: 10px 10px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%, 0% 0%, 0% 50%; }
    50% { background-position: 0% 0%, 0% 0%, 100% 50%; }
    100% { background-position: 0% 0%, 0% 0%, 0% 50%; }
}

body > ul {
    list-style: none;
    padding-left: 10px;
    position: relative;
    z-index: 1;
}

.projects-list > li {
    flex-basis: 50%;
    margin-bottom: 100px;  
    font-size: 3rem;
}

.projects-list > li > a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bolder;
}

.shadow {
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.5);
}