/* 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 { 
      background: url('bookshelf.png');
      background-repeat: no-repeat;
      background-attachment: fixed;  
      background-size: cover;
      color: black;
      font-family: "brixton"; 
      cursor: url('FeatherCursor4.png') 0 0, auto;
      border: 5px solid powderblue; }
      
     
      
 a,
a:hover,
a:active,
a:visited {
  cursor: url("FeatherCursorTilt1.png") 16 16, default;
}
      
     button,
button:hover,
button:active,
input[type="button"],
input[type="button"]:hover,
input[type="submit"],
input[type="submit"]:hover {
  cursor: url("FeatherCursorTilt1.png") 16 16, default; }
  
    style, png, p, h1, h4, span, input[type="text"], textarea {
  cursor: url("FeatherCursorTilt1.png") 0 0, text;
}
    
    
    
    .pfp {
    height: 100px;
    width: 100px;
    border-radius: 50px;}
    
    .Contain {
  padding: 20px 20px 20px 20px;
  background-color: black; }


    h1 {
   line-height: 0.10px;
   }
    
  
  
  .ZeroBox {
      background-color: black;
      text-align: left; 
      color: white;
                   /* full width */
      margin: 40px 100px 0 100px; /* centers it horizontally */
      box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* shadow for depth */
     }
  
.FirstBox {
      background-color: #672ba7;
      text-align: left; 
      color: white;
      width: 80% ;              /* full width */
      margin: 80px 100px 0 auto; /* centers it horizontally */
      box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* shadow for depth */
     padding: 50px 50px 50px 50px; }




.littleperson {
 border: solid black 3px; 
 text-align: center; 
 color: white;
 background-color: rgba(83, 22, 148, 0.47);
 margin: 40px 100px 0 100px;
  padding: 10px 10px 10px 10px;

}


 
  p {
    font-family: "monotype corsiva";
    font-size: large;
    }



.SecondBox {
    text-align: center; 
   color: black;
    height: 600px;
      background-color: rgba(255, 255, 255, 0.48);
           width: 80% ;              /* full width */
      margin: 80px 100px 0 auto; /* centers it horizontally */
      box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* shadow for depth */
     padding: 50px 50px 50px 50px; }
         
         
         
        

.frame-bg {
  display: block;
  width: 100%;   /* resize as needed */
  height: auto;
}


.container {
  display: flex;
  justify-content: center;   /* centers the row */
  gap: 50px;                 /* space between images */
}

.col-1-4 {
  flex: 0 0 auto; /* prevents squishing */
 
}

.item {
  max-width: 80px;  /* scale your items */
  height: auto;
}