#loader-root {
    margin: auto;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
    z-index: 1301;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

#loader-root input {
    width: 0;
    height: 0;
    background: transparent;
    border: none;
    opacity: 0;
}

#loader-root svg {
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: spin;
    display: block;
    margin-bottom: 70px;
    width: 50px;
    height: 50px;
}

#celeb-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: 30%;
    padding-right: 30%;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
