@import url('https://fonts.cdnfonts.com/css/axiforma');

body {
    overflow: overlay;
    margin: 0;
    font-family: 'Axiforma', sans-serif;
}

#header {
    position: fixed;
    top: 0px;
    z-index: 1;
    height: 20vh;
    width: 100vw;
    background-color: #fafbfc;
    transition: box-shadow 1s;
    border-radius: 0px 0px 25px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 40px;
}



::-webkit-scrollbar {
    width: 10px;
    height:10px;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(190, 190, 190, 0.5);
    border: 0px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgb(163, 163, 163, 0.5);
    border-radius: 8px;
    border: double 2px rgba(255,255,255,0);
    background-clip: padding-box;
}