body {
  background-image: url("BG.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  
  font-size: 14px;
  font-family: monospace, "monospace", sans-serif;
  margin: 0;
  
  display: flex;
  justify-content: center;  /* Centers horizontally */
  align-items: center;      /* Centers vertically */
  min-height: 100vh;        /* Makes the body take up the full screen height */
}

p {
  line-height: 1.6em;
  text-align: justify;
  color: #303331;
}

i {
  font-size: 10px;
  color: #6f7877; 
  }

hr {
  border: dashed #303331;
  border-width: 1px 0 0 0;
  margin-left: -10px;
  margin-right: -10px;
}

.container {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 15px;

  width: 1400px;
  height: auto;

  padding: 5px;
  box-sizing: border-box;

  margin-top: 100px;
  margin-bottom: 100px;
  
  align-items: flex-start;
}

.info {
  align-self: flex-start;
  background-color: #f0ece1;
  padding: 10px;

}

.info img {
  width: 325px;
  height: 325px;

  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.library {
  min-width: 0;
  padding: 0px;

  position: relative;
}


.item {
  min-width: 0;
  background-color: #f0ece1;
  padding: 10px;

  border-width: 2px;

  position: absolute;
  box-sizing: border-box;
  
}

  
.item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.content {
  width: 1000px;
  background-color: #f0ece1;
  padding: 20px;

  border-width: 2px;
  }
  
  










