#initial-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f8fc;
}

#initial-loader section {
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    gap: 0.5rem;
	max-width: 300px;
    height: 100%;
	margin: 0 auto;
	overflow: hidden;
    font-family: "Alaska", sans-serif;
}

#initial-loader h1 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.75rem;
}

#initial-loader .reply {
    font-weight: 900;
}

#initial-loader img {
    margin-bottom: 3px;
}

#initial-loader .beta {
    border-radius: 1em;
    margin-left: 0.25em;
    padding: 0.4em 0.7em;
    font-size: 0.4em;
    font-weight: 700;
    background-color: black;
    text-transform: uppercase;
    color: rgb(0, 234, 81);
    line-height: 0.75rem;
}

#initial-loader .boxes {
    display: inline-flex;
}

#initial-loader .box {
    width: 30px;
    height: 10px;
    background-color: rgb(0, 234, 81);
    clip-path: polygon(25% 0%, 90% 0%, 75% 100%, 10% 100%);
    animation: slide 2s linear infinite;
}

#initial-loader p {
    animation: pulse 4s ease infinite;
}

@keyframes pulse {
    50% {
        opacity: 0;
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}