@font-face {  
  font-family: 'Jua-Regular-Custom';
  src: url('assets/fonts/Jua/Jua-Regular.ttf') format('truetype');  
}

html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

body {
    margin: 12px;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "comic sans ms", "Comic Sans MS", cursive, sans-serif;
    font-size: 24px;
}

h1,
p, ul {
    margin: 0px;
    padding: 0px;
}

nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nvs-menu ul.nvs-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nvs-menu ul.nvs-list li {
    margin: 0 1em;
}

.nvs-menu ul.nvs-list li a {
    text-decoration: none;
    color: black;
}

.nvs-menu ul.nvs-list li a:hover {
    color: #007bff;
}

.nvs-logo img {
    width: 100px;
}

.nvs-list {
    justify-items: center;
    font-weight: 200;
}
.nvs-list li {
    list-style: none;
    font-size: 20px;
}

.nvs-list li a {
    text-decoration: none;
}

.nvs-list li a:hover {
    color: #007bff;
    text-decoration: underline;
}

.nvs-copyright {
    justify-items: center;
    font-size: 0.65em;
}

.testborder {
    border: 1px solid black;
}