@font-face {
    font-family: 'Colonna MT';
    font-style: normal;
    font-weight: normal;
    src: url('./fonts/COLONNA.woff') format('woff');
}

html, body {
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    color: #333;
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
    color: rgb(0, 100, 200);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: rgb(0, 80, 160);
}

label {
    display: block;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

input[type="range"] {
    height: 0;
}

button {
    color: #333;
    background-color: #f4f4f4;
    outline: none;
}

button:disabled {
    color: #999;
}

button:not(:disabled):active {
    background-color: #ddd;
}

button:focus {
    border-color: #666;
}

.vsltitle {
    text-align: center;
    font-size: 2.5em;
    font-weight: 100;
    font-family: "Colonna MT";
    background-image: linear-gradient(175deg, #84b4e8, #dfeefe);
    color: #274478;
    line-height: 1;
    padding-top: 7px;
    border-bottom: 4px double #274478;
}

ul.square {
    margin-left: 15px;
    list-style-type: square;
    padding-left: 10px;
}

.nav-container {
    width: 100%;
    background: #274478;
}

nav {
    max-width: 1720px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.left-menu {
    grid-column: 1;
}

.logo {
    grid-column: 2;
}


#nav-toggle, .burger-menu {
    display: none;
}

.burger-menu {
    width: 30px;
}

nav a {
    color: white;
    text-decoration: none;

    font-family: sans-serif;

    transition: .3s all ease-in-out;

}

.left-menu a {
    padding: 10px 0;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.logo {
    font-size: 1.3rem;
    padding: .2rem;
}

.left-menu {
    grid-column: 1;
    align-self: center;
}

.burger-menu {
    grid-column: 1;
    align-self: center;
    margin-left: 20px;
}

nav a:hover {
    opacity: .7;
  }

@media only screen and (max-width: 1025px) {
    .burger-menu {
        display: inline-block;
    }

    .left-menu {
        display: none;
    }

    #nav-toggle:checked ~ .left-menu {
        display: grid;
        grid-row: 2;
    }
}

