/* 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: black;
  background-image: url("/photostudio_1750708118370.jpg"); /* or "https://example.com/image.jpg" */
  background-size: cover;    /* scales image to cover entire page */
  background-repeat: no-repeat;
  
  width: 60%;               /* or a fixed value like 600px */
  margin: 0 auto;           /* top-bottom 0, left-right auto */
  
  font-size: 22px;
  color: white
  
}

.image {
  width: 30%;
  height: auto
}

.text {
  flex: 1;                     /* takes up remaining space */
  line-height: 1.4;
}

.container {
  display: flex;
  align-items: flex-start;     /* aligns items to the top */
  max-width: 60%;
  margin: 3% auto;
  gap: 2%;                   /* space between image and text */
  padding: 0 2%;
}


a:link {
  color: violet;
}

a:visited {
  color: purple;
}

a:hover {
  text-decoration: none;
}