@font-face {
    font-family: DigitalFont;
    src: url(../fonts/DS-DIGI.TTF);
 }
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow-x:hidden;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background-image: repeating-linear-gradient(45deg, blue 0, blue 1px, transparent 0, transparent 60%);
    background-size: 10px 10px;
}

html::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 5px;
    border: 2px solid black;
    box-shadow: inset 3px 3px 8px #90CAF9;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.wavy {
    animation-name: wavy;
    animation-duration: 1.3s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    position: relative;
    top: 0;
    left: 0;
 }

 @keyframes wavy {
    0% {
       top: 0px;
    }

    50% {
       top: -15px;
    }

    100% {
       top: 0px;
    }
 }