/* 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." */
   

/* this is for custom properties/css variables */
:root {
  --box-border-color: #2b2b2b;
}

@font-face {
   font-family: 'fuzzy-bubbles';
   src: url('FuzzyBubbles-Bold.ttf') format('truetype');
   font-style: normal;
   font-weight: normal;
 }
 
hr {
   border: 1px;
   height: 2px;
   background-color: white;
   margin: 20px auto;
   border-radius: 25px;
   width: 75%;
}

body {
  text-align: center;
  background-color: black;
  color: white;
  font-family: 'fuzzy-bubbles';
}

.about-me {
  background-color: #171717;
  border: 2px solid var(--box-border-color);
  border-radius: 10px;
  
  margin: 15px auto;
  padding: 10px;
  
  max-width: 400px;
}

summary {
  cursor: pointer;
  
  padding: 5px;
}

summary:hover {
  text-decoration: dotted underline;
}

/* --- start of section | links --- */
a:link {
  color: white;
  text-decoration: underline dotted white;
}

a:visited {
  color: white;
  text-decoration: underline dotted white;
}

a:hover {
  color: #828282;
  text-decoration: underline;
}

a:active {
  color: #648704;
}
/* --- end of section | links --- */

/* footer text */
.footer-text {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}








  font-size: 12px;
}