@font-face {
	font-family: 'London Between';
	src: url('fonts/LondonBetween.ttf') format('truetype');
}
body {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: auto;
	overflow-x: hidden;
	font-family: 'Arial', sans serif;
}
.container {
	width: calc(100vw - 20px);
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}
img {	
	max-width: 1000px;
}
.img_small{
	max-width: 150px;
}
.image-wrapper {/*background colour for white images*/
    background-color: rgba(0, 0, 0, 0.3); /* Replace #yourColor with your desired color code */
    display: inline-block; /* Make sure the div only takes as much space as needed */
    padding: 10px; /* Optional: Add padding for some spacing around the image */
}

nav {
	background-color: #df3c62;
	padding: 10px 20px;
	display: flex;
	justify-content: center;
	position: absolute;
	width: 100%;
	top: 0;
	text-align: center;
}
.nav-container {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-grow: 1;
}
nav a {
	color: #f8f8f8;
	margin: 0;
	text-decoration: none;
	font-family: 'London Between', sans-serif;
	font-size: 14pt;
	text-transform: uppercase;
	overflow: auto;
	padding-right: 40px;
}
/* my own header classes  - more or less, collaborating with AI */
/* header { */
	/* display: flex; */
	/* align-items: center; */
	/* padding: 20px; */
	/* margin-top: 60px; */
/* } */
/* header div { */
	/* display: flex; */
	/* align-items: center;	 */
	/* margin: 0 auto; */
/* } */
/* header img { */
	/* width: auto; */
	/* max-height: 100px; */
	/* max-width: 75%; */
	/* object-fit: contain;	 */
/* } */

/* header classes suggested by ChatGPT */
header {
	display: flex;
	align-items: center;
	padding: 20px;
	margin-top: 60px;
}

header div,
header img {
	display: flex;
	align-items: center;
	margin: 0 auto;
}

header img {
	width: auto;
	max-height: 100px;
	max-width: 75%;
	object-fit: contain;
}

main {
	padding: 20px;
	font-size: 14pt;
	color: #150a27;
}
main h2 {
	font-family: 'London Between', sans-serif;
	margin-bottom: 10px;
	color: #df3c62;
	font-size: 36pt;
}
main h3	{	
	font-family: 'London Between', sans-serif;
	color: #df3c62;
	font-size: 24pt;
  margin: 2.5rem 0 0.75rem;
}
main p {
	margin-bottom: 12px;
}
.tag-line {
  margin: 0.1rem 0 1.1rem;
  color: rgba(0, 0, 0, 0.72);
  font-size: 1.0rem;
  letter-spacing: 0.01em;
}
blockquote p {  
 margin-bottom: 6px;
}
blockquote {  
	margin-bottom: 6px;
  margin: 1.5rem 0;
  padding: 0rem 1.25rem 0rem 1.1rem;
  border-left: 0.3rem solid var(--accent, #df3c62);
  font-style: italic;
}
main h2::after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background-color: #f0a953;
	margin-top: 5px;
}
.game-section {
  margin:3rem 0 3rem;
}
.announcement {
	color: #df3c62;
	font-family: 'London Between';
	font-size: 20pt;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.announcement-text {
  color: #df3c62;
	font-family: 'London Between';
	font-size: 20pt;
}
.announcement-text a {
	font-weight: bold;  
}
.announcement-text img {
  width: 32px;
}
.announcement img {
  width: 32px;
  margin:10px;
}

main a, footer a {
  display: inline-block;
  transition:
    transform 800ms cubic-bezier(.2, .8, .2, 1),
    color 800ms ease,
    opacity 800ms ease;
}

main a:hover, footer a:hover,
main a:focus-visible, footer a:focus-visible {
  /* transform: scale(1.035); */
transform: translateY(-1px) scale(1.035);
  opacity:0.85;
}
.content hr {
  color: #df3c62;
  margin:2rem 0;
}
.content em {
  color: #df3c62;
  font-weight:bold;
  font-style: normal;
}
.content strong {
  font-style: italic;
  font-weight: 550;
}
footer {
	background-color: #150a27;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 100%;
	color: #f0a953;
	font-weight: normal;
}
.footer-container {
	width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}
footer div h2 {
	font-family: 'London Between', sans-serif;
	color: #f0a953;
	font-weight: normal;
}
footer input[type="email"] {
	padding: 15px;
	margin-left: 20px;
	background-color: white;
	border: none;
	outline: none;
	width: 250px;
	font-size: 14pt;
}
footer input::placeholder {
	color: rgba(0, 0, 0, 0.3);
	font-size: 14pt;
}
.mailing-list,.platform-links {
	display: flex;
	align-items: center;
}
.platform-links img {
	width: 32px;
	margin: 10px;
}
.game-details {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.impressum {
	background-color: white;
	color: #f0a953;
	text-align: center;
	padding: 3px;
	width: 100%;
	margin: 0;
}
a {
	text-decoration: none;
    color: #df3c62;
}
/*consider making another class to exclude icons from the hover enlargement effect*/
a img {
	transition: 0.3s ease;	
}
a.promo:hover img {
	transform: scale(1.02);
}