/* 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." */

@font-face {
  font-family: Baskerville;
  src: url('LibreBaskerville-Regular.eot?#iefix') format('embedded-opentype'), 
	     url('LibreBaskerville-Regular.woff') format('woff'), 
	     url('LibreBaskerville-Regular.ttf')  format('truetype'),
	     url('LibreBaskerville-Regular.svg#svgFontName') format('svg');
}

@font-face {
  font-family: Baskerville-bold;
  src: url(LibreBaskerville-Bold.ttf)
        url('LibreBaskerville-Bold.eot?#iefix') format('embedded-opentype'), 
	      url('LibreBaskerville-Bold.woff') format('woff'), 
	      url('LibreBaskerville-Bold.ttf')  format('truetype'),
	      url('LibreBaskerville-Bold.svg#svgFontName') format('svg');
}

body {
  background-color: black;
  color: white;
  font-family: Baskerville, Times;
  font-size: 12pt;
  line-height: 20pt;
  margin: 0;
  min-height: 100vh;
  height: 100%;
}

img {
  width: 100%;  
}

h1, h2, h3{
  font-family: Baskerville-bold, Times;
  font-weight: bold;
  margin-top: 30pt;
  margin-bottom: 30pt;
}

.bg-div {
  background-image: url('/images/stars.png');
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  height: 100%;
  width: 100%;
  
}

.center-div {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;    
  padding: 20px
}

.quote-div {
  padding: 20px;
}

.nav-div {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.nav-item {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.car-feed {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;    
  padding: 20px
}

.car-div {
   display: flex;
   flex-direction: row;
}

.car-div>p {
  width: 50%;
}

.car-div>img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
    height: auto;
}