@import url("https://use.typekit.net/upn0pcs.css");

@font-face{
    font-family: "DejaVuSans";
    src:  url("/fonts/DejaVuSans.ttf");
}

@font-face{
    font-family: "DejaVuSansExtraLight";
    src:  url("/fonts/DejaVuSans-ExtraLight.ttf");
}

*{
    font-family: Segoe UI;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: transparent;
    box-shadow: inset 0 0 5px transparent; 
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: lightgray; 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: gray; 
}

input[type=button]{
    background-color: #4D92DB ;
    box-shadow: #4D92DB 0px 0px 6px;
    border: 0;
    border-radius: 7px 15px 7px 15px;
    width: 180px;
    height: 55px;
    transition:background-color,box-shadow ease-in 200ms;
    cursor: pointer;

    font-weight: bold;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1.5px;
    text-shadow: #FFFFFF70 0px 0px 6px;
    color: #FFFFFF;
}

input[type=button]:hover{
    background-color: #5C51F0;
    box-shadow: #5C51F0 0px 0px 6px;
}

.buttonNavPhone{
    border: 0;
    width: 50px;
    height: 50px;
    background-color: transparent;
    box-shadow:none;
    border-radius: 0px;
    position: fixed;
    top: 5px;
    cursor: pointer;
    left: 5px;
    z-index: 100;
}

.navPhone{
    z-index: 99;
    top: 0;
    left: 0;
    height: calc(100% - 55px);
    list-style-type: none;
    position: fixed;
    width: 100%;
    transform: translateX(-100%);
    transition:transform 300ms ease-in-out;
    background-color: #FFFFFF54;
    padding-top: 55px;
    backdrop-filter: blur(10px);
}

.navDark{
    background-color: #0000006e;
}

.navSeparation{
    height: 60px;
}

.navPhoneOpened{
    transform: translateX(0%);
}

.navPhone ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.navPhone ul li{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

a img{
    width: 20px;
    height: 20px;
    margin: auto;
    margin-left: 0px;
    margin-right: 10px;
    border: 0;
    border-color: transparent;
}

.navPhone ul li a{
    display: flex;
    color: #000;
    
    padding: 20px 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    opacity: 1;
    text-shadow: #00000070 0px 0px 6px;
}

.navDark ul li a{
    background-color: transparent;
    backdrop-filter: unset;
    color: #A03FD9;
}

.navPhone li a:hover {
    background-color: #a13fd976;
}

@media screen and (min-width: 650px) {
    .navPhone{
        transform: translateX(0%);
        padding-top: 0;
        height: auto;
        background-color: #C7C7C754;
    }

    .navDark{
        background-color: transparent;
    }

    .navPhone ul{
        display: flex;
        flex-direction: row;
    }

    .navPhone ul li a{
        background-color: transparent;
        backdrop-filter: blur(0px);
    }

    .navPhone ul li a:hover{
        backdrop-filter: blur(10px);
    }

    .buttonNavPhone{
        display: none;
    }

    .navSeparation{
        height: 120px;
    }
}
