@font-face {
    font-family: 'Oswald';
    src: url('fonts/Oswald-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Gothic', sans-serif;
    background-color: #000000;
    color: white;
}

#myVideo {
    position: fixed; /* Parallax effect */
	/*position: absolute;*/
    top: 115px;
    left: 50%;
    transform: translateX(-50%);    
    width: 75%;
    height: auto;
    z-index: -1;
}

header {
    text-align: left;
}

main {
    flex: 1;
}

footer {
    display: none;
	background-color: #000000;
    font-family: Oswald, sans-serif;
	color: #FFFFFF;
    text-align: center;
    padding: 5px 0;
	margin-top:12px;
	margin-bottom:12px;
}

.logo {
    margin-left: 140px;
    padding-top: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.7);
    color: white;    
    font-family: Oswald, sans-serif;
    padding: 10px 0;
}

.nav-links, .social-icons {
    display: flex;
    align-items: center;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 25px;
}

nav ul li:first-child {
    padding-left: 80px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 17px;
}

nav a:hover {
    color: #f0f0f0;
}

.social-icons {
    display: flex;
    align-items: center;
    padding-right: 80px;
}

.social-icons a {
    margin-left: 30px;
}

.social-icons img {
    width: 22.5px;
    height: auto;
    display: block;
}

#about {
    display: none;
    margin-top: 400px;
	text-align: center;
    background-color: #FF8B10;
    padding: 40px;
}

#about h2 {
    font-family: BebasNeue, sans-serif;
	font-size: 45px;
	color: #000000;
    margin: 0;
    padding: 0;
}

#about p {
    font-family: Oswald, sans-serif;
	font-size: 18px;
	color: #000000;
	padding-top: 15px;
	padding-left: 400px;
	padding-right: 400px;
}

#games {
    display: none;
	background-image: url('images/GamesBG7.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 40px;
	/*min-height: 1080px;*/ /*TODO: Uncomment, then delete below line*/
	min-height: 100px;
}

#games h2 {
    font-family: BebasNeue, sans-serif;
	font-size: 45px;
	color: #FFFFFF;
    margin: 0;
    padding: 0;
}

#games p {
    font-family: Oswald, sans-serif;
	font-size: 18px;
	color: #FFFFFF;
	padding-top: 15px;
	padding-left: 100px;
	padding-right: 100px;    
}

#contact {
    display: none;    
	justify-content: space-between;
    padding: 20px;
    background-color: rgba(51, 51, 51, 0.7);    
}

#contact h2 {
    font-family: BebasNeue, sans-serif;
	font-size: 45px;
	color: #FFFFFF;
    margin: 0;
    padding: 0;
}

#contact p {
    font-family: Oswald, sans-serif;
	font-size: 18px;
	color: #FFFFFF;
	padding-top: 5px;
	padding-left: 0px;
	padding-right: 0px;
}

#contact img {
    width:212px;
	height:56px;
}

.contact-column {
    flex: 1;
    text-align: center;
}

.contact-column:nth-child(1) {
    text-align: center;
}

.contact-column:nth-child(3) {
    text-align: center;
}

.contact-column img {
    display: block;
    margin: 0 auto;
}

#steam-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    padding: 10px 20px;
    /*background-color: #FFFFFF;*/
	background-image: linear-gradient(to right, rgba(111, 167, 32, 1), rgba(88, 138, 27, 1));
    color: #FFFFFF;
    text-decoration: none;
    font-family: Oswald, sans-serif;
	font-size: 18px;
    border-radius: 50px;    
}

#error-404-container {
    text-align: center;
    padding-top: 100px; /* Adjust as needed */
}

#error-404-container h1 {
    font-family: Oswald, sans-serif;
	font-size: 50px;
    color: #ff8b10; /* Your brand color */
}

#error-404-container h2 {
    font-family: Oswald, sans-serif;
	font-size: 35px;
    color: #ffffff;
}

#error-404-container p {
    font-family: Oswald, sans-serif;
	font-size: 20px;
    color: #ffffff;
}

.back-home-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff8b10;
	font-family: Oswald, sans-serif;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.back-home-btn:hover {
    background-color: #e77d19;
}