@font-face {
    font-family: 'Cosi Azure';
    src: url(./assets/fonts/CosiAzure-BlackStencil.ttf);
}
html,
body{
    margin: 0;
    padding: 0;
    background: #161616;
    color: white;
    overflow-x: hidden;
}

::-webkit-scrollbar{
    width: 0;
}

.progressbar{
    position: fixed;
    top: 0;
    left: 85%;
    background: rgba(255,255,255,0.4);
    width: 1px;
    z-index: 1;
}

.navigation-wrapper ul {
    margin-top: 240px;
    margin-left: 100px;
    margin-bottom: 200px;
    list-style: none;
    position: absolute;
}

.navigation-item {
    display: block;
    user-select: none;
    margin: 120px 0;
}

a {
    font-family: 'Cosi Azure';
    font-size: 100px;
    text-decoration: none;
    color: rgba(255,255,255,0.3);
}

span{
    position: relative;
    display: block;
}

.navigation-item span::before {
    width: 0;
    color: white;
    overflow: hidden;
    position: absolute;
    content: attr(data-text);
    transition: all 1s cubic-bezier(0.84, 0, 0.08, 0.99);
}

.navigation-item span:hover:before {
    width: 100%;
}

.project-preview-wrapper {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: flex;
    justify-content: center;
}

.project-preview {
    position: fixed;
    top: 12%;
    left: 50%;
    width: 0;
    height: 400px;
    background: url(./assets/images/img1.jpg) no-repeat 50% 50%;
    background-size: cover;
    overflow: hidden;
}

@media(max-width:900px) {
    .progressbar,
    .project-preview-wrapper{
        display: none;
    }

    a {
        font-size: 24px;
    }
}