/* custom font directory */
@font-face {
    font-family: 'NintendoDSMenu';
    src: url('fonts/Nintendo-DS-BIOS.ttf') format('truetype');
}

body {
    font-family: 'NintendoDSMenu', Sans-Serif;
}

h1 {
    font-family: 'NintendoDSMenu', serif;
    font-weight: bold;
}

h2 {
    font-size: 3rem;
}

p {
  font-size: 15px;
}

/* no margin on title text (or at least an attempt of)*/
.titleText {
    margin-top: -10px;
    padding: 0px;
}

.no-underline {
    color: #000;
    text-decoration: none;
}

summary {
    display: flex;
    align-items: center;
}
summary::before {
    content: ">";
    margin-right: 0.5em;
    display: inline-block;
    vertical-align: middle;
}
details[open] summary::before {
    content: "V";
}
details > *:not(summary) {
    margin-left: 1em;
}
