/* 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." */
   
body {
  background-color: #34363e;
  color: white; /* Optional for contrast */
  font-family: sans-serif;
  
}

.myspace-pic {
  display: inline-block;
  padding: 8px;
  background: white; /* white frame */
  border: 4px solid black; /* thick border */
  box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
  transform: rotate(-3deg); /* slight tilt */
  max-width: 100px;
  position: relative;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* MySpace vibe */
}

.myspace-pic img {
  display: block;
  width: 100%;
  height: auto;
}



