body {
  background-color: black;
}

.container {
	max-width: 1060px;
	margin-right: auto;
	margin-left: auto;
}

h1 {
  color: white;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(80px, 7vw, 100px);
  font-family: 'Oswald', sans-serif;
}

h2 {
  color: white;
  text-transform: uppercase;
  font-size: clamp(16px, 3vw, 42px);
  font-family: 'Oswald', sans-serif;
}

p {
  color: white;
  font-size: clamp(16px, 2.5vw, 24px);
  font-family: 'Oswald', sans-serif;
}

a {
  color: red;
}

/* unvisited link */
a:link {
  color: red;
  text-decoration: none;
  
}

/* visited link */
a:visited {
  color: red;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: white;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: red;
}


.headEm {
  color: red;
}

.cover {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.row_header {

}

.row_book {
  display: flex;
  flex-direction: row-reverse;
  align-content: center;
}

.column_book_image {
  width: 40%;
  float: left;
  padding: 15px;
  justify-content: center;
}

.column_book_text {
  width: 60%;
  float: left;
  padding: 15px;
  align-self: top;
}

.row_footer {
  padding: 15px;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
	
  body {
	  margin: 0px;
  }
  
  .row_header {
	  display: none;
  }

  .row_book {
	display: flex;
    flex-direction: column;
	background-color: black;
  }
  
  .column_book_image {
	width: inherit;
	padding: 0px;
  }
  
  .column_book_text {
	width: inherit;
  }
  
  .row_footer {
	  padding-top: 0px;
  }
}