/* 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." */
p {
  color:#116045;
}
h2 {
  color:red;
  }

body {
  width: 2000px;
  background-color: white;
  color: black;
  font-family: Verdana;
}

.flexBox{
  grid-area: listBox;
  padding: 5px;
  border: 3px solid black;
  background-color: #E2C7ED;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height:auto;
  max-width: 100%;
  }
  
.bottomRightAligned{
  position: relative;
  bottom:  0px;
  right: 0px;
}
.gridBox{
padding: 2%;
margin: 2%;
display: grid;
border: 3px solid black;
background-color: #E2C7ED;
grid-template-columns: 5fr 2fr;
grid-template-rows: 1fr 9fr;
gap: 3px 3px;
grid-template-areas:
  "heading heading"
  "topicBox listBox"; 
}
.heading{
  width: 100%;
  grid-area: heading;
  text-align: center;
  background-color: white;
  border: 4px solid grey;
  }

.listBox{
  position: relative;
  float: left;
  grid-area: listBox;
  background-color: beige;
  border: 3px solid #6A9CB0;
}
.topicBox{
  position:relative;
  float: left;
  grid-area: topicBox;
  padding: 15px;
  background-color: #EBE4CA;
  border: 3px solid #814141;
}
.fitImage{
  position: relative;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
  min-width: 0;
  max-width: 100%;
  height: auto;
}

.button{
  cursor: pointer;
  display: flex;
  padding:10px;
  margin: 0px;
  flex-basis: 100%;
  object-fit: contain;
  width: fit-content;

  
  }

.scalableImage{
  max-width:100%;
  height: auto;
  justify-content: center;
  }
  
  
.button img {
  padding: 3px;
  flex-basis: 100%;
  object-fit: fill;
  height: auto;
  }