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

html {
  /* px means "pixels". The base font size is now 10 pixels high */
  font-size: 10px;
  /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
  font-family: 'Fuzzy Bubbles';
}
h1 {
  font-size: 60px;
  text-align: center;
}

p,
li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}

html { 
  background-image: url('universe.jpg'); /* Replace with your image path */
    background-repeat: repeat; /* Optional: Prevents image repetition */;color
}

body {
  
  cursor: url('blob cursor.png'), auto; /* Uses the image, falls back to 'auto' if image fails */
  
  width: 600px;
  margin: 0 auto;
  background-color: #ff9eed;
  
  padding: 0 20px 20px 20px;
  border: 5px solid black;
}
h1 {
  margin: 0;
  padding: 20px 0;
  color: #6b000b;
  text-shadow: 3px 3px 1px black;
}

/* style.css */
.link-box {
    width: 300px; /* Set the width of the box */
    height: 200px; /* Set the height of the box */
    border: 2px solid #333; /* Add a border */
    padding: 20px; /* Add space between content and border */
    margin: 50px 100px; /* Center the box horizontally and add top/bottom margin */
    background-color: #fffd6b; /* Set a background color */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}
.lin-box {
    width: 300px;
    height: 200px;
    border: 2px solid #333;
    padding: 20px;
    margin: 50px 20px;
    background-color: #fffd6b;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    vertical-align: top;
}
