#loader {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-color: #ffff;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9vmax;
    padding: 0 3vw;
}

#loader h1 {
    font-size: 5vw;
}

#loader div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 0.6vw;
}

#loader div input {
    width: 60%;
    height: 0.2vmin;
    accent-color: black;
}

@media screen and (max-width: 600px) {
    #loader div {
        justify-content: space-between;
    }
}