.shadow {
    box-shadow: rgba(57, 36, 240, 0.219) 0px 2px 4px 0px, rgba(61, 72, 228, 0.24) 0px 2px 16px 0px;
}

a:hover{
    cursor: pointer;
}

th,td{border: 1px solid black;
    margin: 0;
    padding: 5px;
}

table{
    display: flex;
    table-layout: auto;
    border-spacing: 0;
    max-width: 100vw;
    margin: auto;
    padding: 0;
    border-collapse: collapse;
    border: 1px solid black;
    overflow-x: scroll !important;
}

::-webkit-scrollbar {
    display: none;
}

table:not(#vf-table){
    width: -moz-fit-content;
    width: fit-content;
}

html{
    margin: 0;
    padding: 0;
    align-content: center;
    justify-content: center;
    text-align: center;
    background-color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
}
header{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    position: sticky;
    top: 0;
    z-index: 9998;
    border: 1px solid transparent; 
    background-color: rgb(255, 255, 254);
    color: black;
    box-shadow: 0 4px 2px -2px rgb(163, 151, 151);
}

nav{
    display: flex;
}
nav>ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    padding-left: 0;
}
nav>ul>li{
    list-style: none;
    padding-left: 10px;
    padding-right: 10px;
    text-transform: uppercase;
}
nav>ul>li>a:hover{
    color: rgb(36, 164, 238);
}
svg{
    width:30px;
}

#hamburger-svg{
    display: none;
}

a{ 
    color: black;
    text-decoration: none;
}

#logo-img{
    height: 50px;
    width: auto;
    padding: 10px;
}

h1{
    font-weight: 600 !important;
    margin-top: 70px;
    margin-bottom: 70px;
}

h1, h2, h3{
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .1rem;
}

h1, h2{
    font-size: 1.5rem;  
}

footer {
    margin-top: 70px;
    padding: 30px;
    background-color: rgba(0, 58, 248, 0.411);
  }

@media (max-width:1100px) {
    header{
        flex-direction: column;
        flex-wrap: wrap;
    }

    nav{
        display: none;
        animation: all 11.25s ease 0s 1 navigation;
    }
    nav>ul{
        flex-direction: column;
    }
    nav>ul>li{
        padding-bottom: 10px;
    }
    nav>ul>li>a:active{
        nav{
            display: none;
        } 
    }
    #hamburger-svg{
        display: flex;
    }
}

@media (min-width:601px) {
    .desktop{
        display: inherit;
    }
    .mobile{
        display: none;
    }
  }

@media (max-width:600px) {
    .desktop{
        display: none;
    }
    .mobile{
        display: inherit;
    }

    @keyframes navigation{
        0%{
            height: 0px;
        }
        100%{
            height: auto;
        }
    }
}