.simple-list {
    > h1 {
        font-size: 60px;
        font-weight: 300;
        margin-bottom: 40px;
        color: white;
        margin-top: 40px;
        text-shadow: 0px 5px 15px #0005;
    }
}



@keyframes release {
    0% {
        translate: 0 100px;
        opacity: 0;
    }
    100% {
        translate: 0 0px;
    }
}
.animated-release-grid {
    animation: release calc(1s - var(--delay)) cubic-bezier(0,.44,.25,1);
    animation-delay: var(--delay);
    &:not(.animated-release-grid-loaded) {
        opacity: 0 !important;
        animation: none;
    }
    animation-fill-mode: backwards;
}





/*# sourceMappingURL=profiles.css.map*/