* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    font-family: "Roboto";
    box-sizing: border-box;
}

html {
    background-color: #222222 !important;
}

.loaded {
    -webkit-animation: fadein .5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein .5s; /* Firefox < 16 */
        -ms-animation: fadein .5s; /* Internet Explorer */
         -o-animation: fadein .5s; /* Opera < 12.1 */
            animation: fadein .5s;
            
}


body {
    margin: 0rem;
    overflow: hidden; 
    color: #E2E2E2 !important;
}

.bg {
    height: 34vmax;
    aspect-ratio: 1;
    position: fixed;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    background: linear-gradient(75deg, #cc2b5e 0%, #753a88 100%);
    animation: rotate 15s infinite;
    opacity: 0.8;
    -webkit-filter: blur(100px);
    -moz-filter: blur(100px);
    -o-filter: blur(100px);
    -ms-filter: blur(100px);
    filter: blur(100px);
}

@keyframes rotate {
  from {
    rotate: 0deg;
  }
  
  50% {
    scale: 1 1.5;
  }
  
  to {
    rotate: 360deg;
  }
}

@media only screen and (max-device-width: 1366px) {
    body {
      background-attachment: scroll;
    }
}

.page-bg {
    padding-top: 1em;
    padding-bottom: 6.4em; 
    min-height:100%;
    width:100%;
    margin: 0;
}

a {
    color: #E2E2E2 !important;
}

a:hover {
    color: #E2E2E2 !important;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #222222; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #F14668; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #962b41; 
}
