/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
  font-family: Nintendo-DS-BIOS;
  src: url(https://dl.dropbox.com/s/vlxjtnvrl9s0snp/Nintendo-DS-BIOS.ttf);
}

* {
  cursor: url(https://cur.cursors-4u.net/cursors/cur-2/cur116.cur), auto !important;
}

body {
  color: rgb(255, 255, 255);
  font-family: Nintendo-DS-BIOS;
  font-size: min(8vw, 30px);
  background-image: url(images/stars.gif);
}

mark {
  background-color: #0b0a86;
  color: white;
}
hr {
  border: 0.2em solid rgb(11, 15, 126);
}

.content {
  max-width: 1000px;
  margin: auto;
  background: rgb(0, 0, 0);
  border: 6px solid rgb(11, 15, 126);
  padding: 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.center {
  text-align: center;
  width: 90%;
  padding: 10px;
  margin: auto;
}

a:link {
  color: #1039ac;
  text-decoration: underline;
}

a:visited {
  color: #1039ac;
  text-decoration: underline;
}
a:hover {
  background-color: rgb(5, 17, 115);
  color: #ffffff;
}

footer a:link {
  color: rgb(4, 139, 237);
}

footer a:visited {
  color: rgb(4, 139, 237);
}

footer a:hover {
  background-color: #00b9ff;
  color: white;
}

footer {
  margin: auto;
  max-width: 1032px;
  text-align: center;
  font-size: smaller;
  height: 3em;
  background-color: rgb(11, 15, 126);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: white;
}

#header {
  color: rgb(16, 21, 162);
  font-size: min(16vw, 84px);
  text-align-last: center;
  margin-top: 0;
  margin-bottom: 0;
}

.flex {
  display: flex;
  gap:5px
}

.sidebar {
  padding: 5px;
  text-align-last: center;
  margin-top: 0;
  text-align: center;
  line-height: 1.2;
  font-size: min(5vw, 30x);
  border: min(1vw, 5px) solid rgb(11, 15, 126);
}
.main {
  width: 80%;
  padding: 15px;
  order: 2;
  font-size: min(6vw, 35px);
  height: max-content;
 border: min(1vw, 5px) solid rgb(11, 15, 126);
}

h1,
h2,
h3 {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  color: rgb(16, 21, 162);
  text-align: center;
}

.flex-sidebar {
  width: 30%;
  font-size: min(6vw, 30px);
  height: max-content;
  text-align-last: center;
  padding: 0;
  flex-direction: column;
  order: 1;
}
h3 {
margin-top: 0.1em;
margin-bottom: 0.1em;
padding: 10px;
font-weight: bold;
font-size: min(5vw, 45px);
}
p{
margin-top: 0.5em;
margin-bottom: 0.5em
}
ul{
margin-top: -0.2em;
margin-bottom: 0.5em
}
            
