/* 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: #243c41;
  background-image: url("https://www.dropbox.com/scl/fi/rnoxmy97qfy2duttl3p34/library-background-2-cropped.jpg?rlkey=nl3yfh6ns2qo6cf1wg86kxvoj&st=c0mlm7rl&raw=1");
  background-position: top;
} .layout {
  width: 60%;
  .two-column-div {
 column-count: 2;
}
  display: flex;
  justify-content: flex-end;
  margin-top: 100px;
  margin-left: 450px;
  grid-template-columns: repeat(2, 1fr);
  grid-template:
    "header"
    "body";
  gap: 60px 50px;

* { box-sizing: content-box; }

#content {
  background-color: #f1e4bd;
  border: 3px solid #898977;
  padding: 0.2rem;
  display: flex;
}

.header {
 background: #5C6655 ;
  color: #ffffff;
  padding: 12px;
  margin-bottom: 36px;
  margin-left:160px;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 100px;
  border-radius: 55px;
  flex-grow: 1;
  border-color: #898977;}
  
.body {
background: #F7F2CB ;
background: linear-gradient(172deg, rgba(247, 242, 203, 0.75) 0%, rgba(189, 183, 151, 0.95) 100%);
  color: #0b1211;
  padding: 12px;
  width: 600px;
  margin-bottom: 50px;
  height: 600px;
  overflow: auto;
  justify-content: center;
  align-items: center;
  border-radius: 34px;
  border-color: #898977;
 
}
}
  p {
  text-align: center;
  color: black;
  font-family: 'Times New Roman', Times, serif
  
/*LINK COLOURS*/
/* unvisited link */
;a:link {
  color: darkslategray;

}

/* visited link */
a:visited {
  color: darkgreen;
}

/* mouse over link */
a:hover {
  color: darkgreen;
}


} 
