﻿/*========================================================================*/
/*Default HTML*/
/*========================================================================*/
body {
    background-color: RGBA(10,65,49, 1);
    font-family: Sansation;
    color: RGBA(214, 183, 39, 1);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

    body.fade-in {
        opacity: 1;
    }

    body.fade-out {
        opacity: 0;
    }

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 4px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--custom-primary);
    border-radius: 4px;
    opacity: 0.6;
    transition: opacity 0.3s ease-in-out;
}
    ::-webkit-scrollbar-thumb:hover {
        opacity: 1;
    }

::-webkit-scrollbar-track {
    background: transparent;
}

/*========================================================================*/
/*Root settings*/
/*========================================================================*/
:root {
    --custom-primary: #D6A827;
    --custom-secondary: #0A4131;
}

/*========================================================================*/
/*Custom CSS*/
/*========================================================================*/

.custom-center{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-fs-7 {
    font-size: 16pt;
}

.custom-minheight-100{
    min-height: 100vh;
}

.custom-minwidth-100 {
    min-width: 100vw;
}

.custom-text-link {
    color: RGBA(214, 183, 39, 0.8);
    transition: all 0.2s ease;
}
    .custom-text-link:hover {
        color: RGBA(214, 183, 39, 0.5);
        transform: scale(1.01);
    }


.custom-logo-wrapper {
    perspective: 1000px;
}

.custom-spinning-logo {
    animation: custom-spin3D 10s linear infinite;
    transform-style: preserve-3d;
    will-change: transform;
}


/*========================================================================*/
/*Custom CSS KeyFrames*/
/*========================================================================*/
@keyframes custom-spin3D {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/*========================================================================*/
/*In-Progress*/
/*========================================================================*/

