.loader-container {
    height: 100vh;
    background-color: #26262a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loader {
    width: 250px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid;
    border-color: #ff6979 #0000;
    animation: l1 1s infinite;
    position: relative;
}

@keyframes l1 {
    to {
        transform: rotate(.5turn);
    }
}

.nytlife-text {
    color: #ff6979;
    font-size: 30px;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loading-progress-text {
    color: #ff6979;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
}