html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    overflow-x: hidden;
    overflow-x: hidden !important;
    touch-action: pan-x pan-y;
}

body {
    margin-bottom: 600px;
    background-color: black;
    width: 100% !important;
    height: 100% !important;
    touch-action: pan-x pan-y;
}


::-webkit-scrollbar {
    display: none;
}

@font-face {
    font-family: 'Cocogoose';
    src: url('../fonts/cocgoose.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NormalG';
    src: url('../fonts/normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BoldG';
    src: url('../fonts/bold.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BoldItalicG';
    src: url('../fonts/bolditalic.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ItalicG';
    src: url('../fonts/italic.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}







/* From Uiverse.io by vinodjangid07 */
.Btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(#203f5c, #1c2b38);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: none;
    position: fixed;
    bottom: 35px;
    right: 20px;
    z-index: 999;
    opacity:0.3;
    transition:opacity 1s ease;
}

.arrow path {
    fill: white;
}

.text {
    font-family:NormalG;
    font-size: 0.6em;
    width: 100px;
    position: absolute;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -35px;
    opacity: 0;
    transition-duration: .7s;
}

.Btn:hover {
opacity:1 !important;
}

.Btn:hover .text {
    opacity: 1;
    transition-duration: 0.7s;
}

.Btn:hover .arrow {
    animation: slide-in-bottom .7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

