/* 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." */
:root { 
  /* Catppuccin colors */
  --rosewater: #f5e0dc;
  --flamingo: #f2cdcd;
  --pink: #f5c2e7;
  --mauve: #cba6f7;
  --red: #f38ba8;
  --maroon: #eba0ac;
  --peach: #fab387;
  --yellow: #f9e2af;
  --green: #a6e3a1;
  --teal: #94e2d5;
  --sky: #89dceb;
  --sapphire: #74c7ec;
  --blue: #89b4fa;
  --lavender: #b4befe;
  --text: #cdd6f4;
  --subtext1: #bac2de;
  --subtext0: #a6adc8;
  --overlay2: #9399b2;
  --overlay1: #7f849c;
  --overlay0: #6c7086;
  --surface2: #585b70;
  --surface1: #45475a;
  --surface0: #313244;
  --base: #1e1e2e;
  --mantle: #181825;
  --crust: #11111b;
  
  /* Constants */
  --rounded-borders: 25px;
  
}

/* Elements */
body {
  
  color: var(--text);
  font-family: "RussianGothic", "MS UI Gothic", "NEC_APC3", Tahoma;
  background: var(--crust);
}

h1 {
  color: var(--peach) !important;
}

h2 {
  color: var(--peach) !important;
  font-family: "Cascadia";
  
  margin-top: 0px;
  margin-top: 0px;
  padding-bottom:2%;
}

/* Classes */
.center {
    margin: auto;
    width: 60%;
}

.content {
  width: 900px;
  margin: 0 auto;
  border-radius: var(--rounded-borders);
}

.box {
  background-color: var(--mantle);
  border-radius: var(--rounded-borders);
}

.sidePanelBox {
  position: relative;
}
.sidePanelBox h2 {
  text-align: center;
}
.sidePanelList {
}

/* IDs */
#aboutBox {
  width: 655px;
  margin-left: 3px;
  padding: 3px;
  border-radius: var(--rounded-borders);
  
}

#welcome {
  font-family: "Pixel NES";
}

#linkBox {
 width: 220px;
 margin-top: 3%;
 max-height: 240px;
 padding: 3px;
}

#linkBox li {
  list-style-type: none;
}

#projectsBox {

}
#projectsBox li{
  list-style-type: none;
}