body {
	/*font-family: Arial, sans-serif;*/
	font-family: 'agencyfbbold';
	src: url('font/webfontkit-20230523-033151/agencyfb-bold-webfont.woff2') format('woff2'),
         url('font/webfontkit-20230523-033151/agencyfb-bold-webfont.woff') format('woff');
	color: #fff;
	/*background-color: #000;*/
	background-image: url(images/Evidence\ Room.jpeg);
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.75);
	margin: 0;
	padding: 0;
}

/*@font-face {
    font-family: 'agencyfbbold';
    src: url('font/webfontkit-20230523-033151/agencyfb-bold-webfont.woff2') format('woff2'),
         url('font/webfontkit-20230523-033151/agencyfb-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}*/

a {
	color: #fff;
	text-decoration: none;
}

a:hover {
	color: red;
}

ul {
	/*list-style-type: none;*/
	margin: auto;
	padding: 0;
	align-items: center;
}

#Hometabbtn {
	list-style-type: none;
}

/* Header styles */
header {
	background-color: #111;
	box-shadow: 0 2px 2px rgba(255, 255, 255, 0.1);
	padding: 10px;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav ul {
	display: flex;
	align-items: center;
}

nav li {
	margin-right: 20px;
}

nav a {
	font-weight: bold;
	font-size: 18px;
}

/* Main styles */
main {
	padding: 20px;
	max-width: 960px;
	margin: 0 auto;
}

section {
	margin-bottom: 40px;
	border-bottom: 1px solid #444;
}

h1 {
	font-size: 100px;
	margin-bottom: 10px;
}

h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

p {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 15px;
}

/* Footer styles */
footer {
	background-color: #111;
	color: #999;
	padding: 10px;
	text-align: center;
}

/* Noir-specific styles */
h1, h2, h3, h4, h5, h6 {
	color: #fff;
}

nav a:hover {
	color: #fff;
}

#Imgandtextsection {
	display: flex;
}

/*section p:first-of-type:first-letter {
	font-size: 40px;
	float: left;
	margin-right: 10px;
}*/

section p {
	color: #aaa;
}

section1 p {
	color: #aaa;
}

section a {
	color: #fff;
	border-bottom: 1px solid #999;
}

section a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
}

/* Mobile styles */
@media only screen and (max-width: 768px) {

	header {
		padding: 20px 10px;
	}

	nav {
		flex-direction: column;
	}

	nav ul {
		flex-direction: column;
		margin-top: 20px;
	}

	nav li {
		margin-right: 0;
		margin-bottom: 0;
		padding-top: 1em;
	}

	main {
		padding: 10px;
	}

	h1 {
		font-size: 50px;
	}

	h2 {
		font-size: 28px;
	}

	p {
		font-size: 16px;
	}

	/*#Imgandtextsection {
		display: flexbox;
		flex-direction: column;
	}*/

}

/* Animations */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

section {
	animation: slideIn 1.5s ease-in-out;
}

section1 {
	animation: slideIn 1.5s ease-in-out;
}

nav a {
	animation: fadeIn 1s ease-in-out;
	animation-fill-mode: backwards;
}

strong {
	color: white;
}

.button {
	background-color: whitesmoke;
	border: none;
	color: black;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: block;
	width: 30%;
	font-size: 16px;
	margin: auto;
	cursor: pointer;
	margin-bottom: 2em;
}