h1 {color:darkorange;}

.slide-in-image {
  width: 500px; /* Adjust size as needed */
  animation: slideLeft 1s ease-out forwards;
}

@keyframes slideLeft {
  from {
    transform: translateX(10%); /* Starts off-screen to the right */
  }
  to {
    transform: translateX(0); /* Ends at its original position */
  }
}
/* 
	Default font size - 16px
*/

/* HTML Selectors */
body {
	background-color: #000000;
}

h1,
h2 {
	text-align: center;
  font-family: "Cinzel", serif;
  font-weight: normal;
}

p {
	font-family: "Lato", sans-serif;
  font-size: 1rem;
}

ul,
ol {
	display: inline-block;
}

img {
	max-width: 100%;
}

/* IDs */
#LosAngelesTimes,
#LosAngelesTimes {
	border: 2px solid lightgrey;
}
#IMDb {
	border: 2px solid lightgrey;
  background-color: #D3D3D3;
}
#Boundingintocomics {
	border: 2px solid lightgrey;
  background-color: #D3D3D3;
}
#Cbr {
	border: 2px solid lightgrey;
  background-color: #D3D3D3;
}
/* Classes */
.box {
	background-color: lightgrey;
  text-align: center;
  padding: 0.5em;
  margin: 0 1em 1.5em;
  border-radius: 1em;
}