:root {
    --primary: #f3fae1;
    --secondary: #e26199;
    --sec_two: #f7f6c5;
    --tertiary: #c04cfd;
    --tert_two: #5e2bff;
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #001d3d;
        --secondary: #fff1a9;
        --sec_two: #001d3d;
        --tertiary: #e76f51;
        --tert_two: #ff7b00;
    }
  }

@font-face {
    font-family: 'MC TEN'; /*a name to be used later*/
    src: url('mc-ten.ttf'); /*URL to font*/
}

body {
    font-family:'Courier New', Courier, monospace;
    background-color: var(--sec_two);
    color:var(--secondary);
    font-size: 1.1em;
}

#navi {
    width: 100%;
    margin: 0;
    position: sticky;
    text-align: center;
}

#navi ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#navi li {
    display: inline;
    padding: 2px 8px;
    transition: 2s;
}

a {
    color: var(--tert_two);
    text-decoration: none;
    border-bottom: var(--tert_two) 2px solid;
    padding: 1px;
    transition: 0.5s;
}

a:hover {
    background-color: var(--tert_two);
    color: var(--primary);
}

.active {
    background-color: var(--tert_two);
    color: var(--primary);
}


section {
    margin: 0px auto;
    width: 650px;
}

@media only screen and (max-width: 750px) {
    section {
        width: 400px;
    }
}


h1 {text-align: center; color: var(--tert_two); font-family: "MC TEN"; font-size: 3.5rem;}

.important {color: var(--tertiary); font-weight: bold;}

hr {
    color: var(--tert_two);
    width: 50%;
}

.footer {
    opacity: 0.8;
    font-size: 0.8rem;
    width: 100%;
  }

h3 {
    color: var(--tert_two);
    border-left: var(--tert_two) 15px solid;
    padding-left: 5px;
}

h2 {
    color: var(--tert_two);
}