/* public/style.css */

@import 'siteStyle.css' 

html,
body,
#root {
  /*height: 100%;
  width: 98%;*/
}

body {
  margin: 5px;
  padding: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

h1 {
	font-size: 30px;
}
ol {
  list-style-type: upper-roman;
}

li {
}

li a:hover {
  background-color: #555;
  color:white;
}

#root {
  display: flex;
  flex-direction: column;
}


.Center {
  text-align: center;
}

.Details {
  text-align: left;
  text-indent: 20px;
}

.Banner {
	text-align: center;
}

.Quote {
  text-align: center;
  font-style: italic;
}

.Author {
  text-align: center;
}

.NavButtons {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;

  flex-wrap: wrap; /*from old one*/
}


.NavButton {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 5px 20px 5px 20px;
  margin: 5px;
  text-align: center;

  border-radius: 30px;

  font-size: 16px;
  font-weight: bold;

  text-transform: capitalize;
}


.SingleEntry {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 10px;
	align-content: center;
	justify-content: center;
}
.SingleEntry img {
	padding: 5px;
}

.EntryTitle {
	align-self: flex-start;
	flex-basis:100%;
	text-align: center;
}

.Quote {
  text-align: center;
  font-style: italic;
  flex-basis:100%;
}

@media screen and (max-width: 600px) {
	.EntryAuthor {
		word-wrap: break-all;
		overflow-wrap: break-all;
		font-size: 15px;
	}
}
