#wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    height: 100%;
    padding: 0 6rem;
}
#wrap .img_wrap {
    width: 25rem;
    margin-bottom: 8rem;
}
#wrap .img_wrap img {
    width: 100%;
}
#wrap a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    background: #718cfb;
    padding: 1.5rem 6rem;
    border-radius: 1rem;
}
#wrap .loading {
    height: 0.8rem;
    width: 100%;
    background: #f6f6f6;
    border-radius: 5rem;
}
#wrap .loading .bar {
    width: 0%;
    height: 0.8rem;
    border-radius: 5rem;
    background: #f56b00;
    animation: progressBar 1s linear forwards;
}

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}