*, html{
    scroll-margin: 80px !important;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Be Vietnam', sans-serif;
    box-sizing: border-box;
}


.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}



.btn{
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 200px;
    background-color: white;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Be Vietnam', sans-serif;
    border: 1px solid white;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn:hover{
    background-color: #f1f1f1;
}

.btn.alt{
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn.alt:hover{
    background-color: white;
    color: black;
}

.btn.alt.black{
    background-color: transparent;
    color: black;
    border: 1px solid black;
}

@keyframes highlight_logo_reveal{
    0%{
        opacity: 0;
        transform: translateY(20px) scale(.9);
    }
    100%{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes highlight_logo_reveal2{
    0%{
        opacity: 0;
        transform: translateY(60px) scale(.9);
    }
    50%{
        opacity: 1;
        transform: translateY(30px) scale(1);
    }
    100%{
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}


    .spinner {
		width: 44.8px;
		height: 44.8px;
		animation: spinner-y0fdc1 2s infinite ease;
		transform-style: preserve-3d;
        --color: #ffffff;
        --colorT: rgba(255, 255, 255, 0.2);
	}

	.spinner > div {
		background-color: var(--colorT);
		height: 100%;
		position: absolute;
		width: 100%;
		border: 2.2px solid var(--color);
	}

	.spinner div:nth-of-type(1) {
		transform: translateZ(-22.4px) rotateY(180deg);
	}

	.spinner div:nth-of-type(2) {
		transform: rotateY(-270deg) translateX(50%);
		transform-origin: top right;
	}

	.spinner div:nth-of-type(3) {
		transform: rotateY(270deg) translateX(-50%);
		transform-origin: center left;
	}

	.spinner div:nth-of-type(4) {
		transform: rotateX(90deg) translateY(-50%);
		transform-origin: top center;
	}

	.spinner div:nth-of-type(5) {
		transform: rotateX(-90deg) translateY(50%);
		transform-origin: bottom center;
	}

	.spinner div:nth-of-type(6) {
		transform: translateZ(22.4px);
	}

	@keyframes spinner-y0fdc1 {
		0% {
			transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
		}

		50% {
			transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
		}

		100% {
			transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
		}
	}

    .loadtext{
        color: var(--color);
        opacity: 0.8;
        font-size: 1.2rem;
        text-align: center;
        margin-top: 1rem;
        position: fixed;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }

