#loading-screen {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    z-index: 1350;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loading-text,
#loading-text-extra,
.support-text {
    font-family: Volte, Arial, sans-serif;
    font-weight: 400;
}

#loading-text,
#loading-text-extra {
    display: none;
    text-align: center;
    margin-bottom: 20px;
    vertical-align: middle;
}

#loading-text {
    font-size: 32px;
    line-height: 42px;
    color: #008a8b;
}

#loading-text-extra {
    font-size: 24px;
    line-height: 1.2;
}

#copy-support-id,
.support-container svg {
    cursor: pointer;
    transition: transform .15s ease-in-out, filter .15s ease-in-out;
}

#copy-support-id:hover,
.support-container svg:hover {
    transform: scale(1.1);
}

#copy-support-id:active,
.support-container svg:active {
    transform: scale(.95);
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, .3));
}

#copy-support-id:focus {
    outline: 2px solid #008a8b;
    outline-offset: 2px;
}

#left-wheel,
#right-wheel {
    animation: spin 1s linear infinite;
}

#left-wheel {
    transform-origin: 18.036px 35.851px;
}

#right-wheel {
    transform-origin: 68.161px 35.851px;
}

#logo {
    margin-bottom: 2rem;
    height: auto;
    max-width: 486px;
    aspect-ratio: 486.46 / 188.79;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

#car {
    position: relative;
    width: 93px;
    height: 45px;
    animation: drive 4s ease-in-out infinite, bounce .5s ease-in-out infinite alternate;
}

@keyframes drive {
    0% {
        left: 0;
        transform: scaleX(1);
    }
    45% {
        left: 500px;
        transform: scaleX(1);
    }
    50% {
        left: 500px;
        transform: scaleX(-1);
    }
    95% {
        left: 0;
        transform: scaleX(-1);
    }
    100% {
        left: 0;
        transform: scaleX(1);
    }
}

.title {
    width: 600px;
    border-bottom: 2px solid #dce6e6;
}

.support-text {
    margin: 0;
    color: rgba(0, 0, 0, .6);
    align-self: center;
    font-size: 12px;
    line-height: 14px;
}

.support-container {
    position: absolute;
    display: flex;
    left: 4rem;
    bottom: 1rem;
}

.logo {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.logo > svg {
    max-width: 444px;
}
