:root {
    --borderRadius: 0.2rem;
    --color1:#fefdf8;
    --color2:#9f9981;
    --color3:#242219;
    --color4:#797253;
    --color5:#444F77;
    --color6:#776c44;
    --color7:#4599BA;
    --color8:#5EA166;
    --color9:#d5822a;
    --color10: #C13584;
    --bg0: #faf9f2;
    --bg3: #dfe0c3;
    --transparent: #ffffff00;




    --bg1: #000000;
    --fontcolor1: #ffffff;
    --titles1: #ffffff;
    --buttons1: #776c44;

}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


html {
    overflow: hidden;
    height: 100%;
}

body{
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
    margin: 0;
    padding: 0;
    background: radial-gradient(closest-side,  #2a3b47, #0f2027);
    color: var(--fontcolor1);
    height: 100%;
    overflow-y: auto;
    outline: none;
    list-style: none;
    word-wrap: break-word;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    align-items: center;
    justify-content: center;
    display: flex;
    /* text-align: center; */
    text-decoration: none;
    line-height: 1.75em;
}


.hero .container .loading-page .link{
    color: var(--fontcolor1);
    border: 1px solid var(--fontcolor1);
    border-radius: var(--borderRadius);
    padding: 2px 5px;
    margin: 15px;
    transition: 0.3s;
}

.hero .container .link:hover{
    opacity: 0.75;
}

.socials{
    padding: 10px;
    /* margin-left: 15px; */
    display: flex;
    justify-content: center;
}

.socials a{
    text-decoration: none;
    margin: 0;
    padding: 5px;
    font-size: 30px;
    color: var(--fontcolor1);
  }

/* Logo Load Start */
.loading-page {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    color: #191654;
}
  
#svg {
    height: 400px;
    width: 400px;
    padding: 60px 60px 0 60px;
    stroke: white;
    fill-opacity: 0;
    stroke-width: 3px;
    stroke-dasharray: 4500;
    animation: draw 8s ease;
}
  
@-webkit-keyframes draw {
    0% {
        stroke-dashoffset: 4500;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* .name-container {
    height: 30px;
    overflow: hidden;
} */

.logo-name {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    margin-left: 20px;
    font-weight: bolder;
}
/* Logo Load End */