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

/* 1. Register the Regular version */
@font-face {
  font-family: 'Neue Machina';
  src: url('/fonts/PPNeueMachina-PlainRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* 2. Register the Bold version */
@font-face {
  font-family: 'Neue Machina';
  src: url('/fonts/PPNeueMachina-PlainUltrabold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* 3. Apply the styles to your website */
body {
  /* This pulls your nail polish image and tiles it across the screen */
  background-image: url('/nailpolish.jpg');
  background-repeat: repeat; 
  background-position: top left;
  background-attachment: scroll;
  
  /* Your text and layout settings */
  background-color: white;
  color: black;
  font-family: 'Neue Machina', sans-serif;
}
/* Creates a clean, readable box for your website content */
main, .content-box {
  background-color: rgba(255, 255, 255, 0.95); /* White box that is 95% solid */
  max-width: 800px; /* Prevents the text from stretching too wide */
  margin: 40px auto; /* Centers the box on the screen with space at the top/bottom */
  padding: 30px; /* Adds comfortable breathing room inside the box around your text */
  border-radius: 8px; /* Slightly rounds the corners for a modern look */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Adds a soft drop shadow to make it pop */
}

h1, h2, h3, strong {
  font-weight: 700;
}

