body {
  visibility: hidden;
}
body.loaded {
  visibility: visible;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
    img {
    width: min(500px, 55vw);
    height: auto;
    margin-bottom: 20px;
    }
}