.projects{height:100%;--project-width:160px;--project-height:80px;position:relative}.project{display:flex;align-items:center;justify-content:center;width:var(--project-width);height:var(--project-height);background-color:var(--accent-dark);border-radius:8px;position:absolute;animation:moveX calc(5.8s + var(--offset-x, 0s)) linear var(--offset-start,0s) infinite alternate,moveY calc(7.7s + var(--offset-y, 0s)) linear var(--offset-start,0s) infinite alternate}.project:hover{box-shadow:0 0 16px 4px var(--random-colour,var(--accent-light))}@keyframes moveX{0%{left:0}to{left:calc(100% - var(--project-width))}}@keyframes moveY{0%{top:0}to{top:calc(100% - var(--project-height))}}