@font-face {
    font-family: "Roboto Black";
    src: url(/Fonts/Roboto-Black.ttf) format("truetype");
}
@font-face {
    font-family: "Roboto Light";
    src: url(/Fonts/Roboto-Light.ttf) format("truetype");
}
@font-face {
    font-family: "Roboto Medium";
    src: url(/Fonts/Roboto-Medium.ttf) format("truetype");
}
body {
    margin: 0 auto;
}
header, footer {
    background-color: #1F2937;
    margin: 0 auto;
}
header {
    padding: 10px;
}
.wrapper {
    margin: 0 15%;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    color: #F9FAF8;
    font-family: "Roboto Black", sans-serif;
    font-size: 24px;
}
header nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;

}
header nav ul li {
    margin: 0 10px;
    color: #e5e7eb;
	padding: 8px;
	border-radius: 5px;

}
header nav ul li a {
    color: #E5E7EB;
    font-family: "Roboto Light", sans-serif;
    text-decoration: none;
}
div.hero {
    display: flex;
    margin: 75px 0;
    gap: 20px;
}
.hero-child {
    width: 50%;
}
.hero-child h1 {
    color: #F9FAF8;
    font-size: 48px;
    font-family: "Roboto Black", sans-serif;
    margin: 0;
}
.hero-child .hero-child-subtext {
    color: #E5E7EB;
    font-family: "Roboto Light", sans-serif;
    font-size: 18px;
}
.hero-child.hero-right {
    color: #E5E7EB;
    position: relative;
    font-family:"Roboto Light", sans-serif;
    text-align: center;
    background: #666;
}
.hero-image {
    width: 100%;
    height: auto;
}
.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: -1;
}
.main-button {
    color: #F9FAF8;
    font-family: "Roboto Medium", sans-serif;
    padding: 5px 20px;
    border-radius: 5px;
    border: none;
}
footer {
    color: #E5E7EB;
    font-family: "Roboto Light", sans-serif;
    font-size: 18px;
    text-align: center;
    padding: 15px;
}


.nav-flex {
	display: flex;
	align-items: center; /* Optional: align vertically to the center */
  }

  .nav-flex > ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
  }

  .nav-flex > ul > li {
	color: #e5e7eb;
	padding: 8px;
	border-radius: 5px;
	display: inline-block;
	margin-right: 20px; /* Optional: space out the list items horizontally */
  }

.logo {
	width: 150px;
	height: auto;
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


/*----- MEDIA QUERIES -----*/

@media only screen and (max-width: 680px) {
    .wrapper {
        margin: 10px;
    }
    div.hero {
        flex-direction: column;
    }
    .hero-child {
        width: 100%;
    }
}
