@font-face {
    font-family: "Noto Sans";
    src: url("fonts/Noto_Sans/static/NotoSans-Regular.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans";
    src: url("fonts/Noto_Sans/static/NotoSans-Italic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Noto Sans";
    src: url("fonts/Noto_Sans/static/NotoSans-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #ffffff;
}

nav {
    background-color: #333;
    padding: 10px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

nav a:hover {
    background-color: #575757;
}

.logo-container {
    text-align: center;
    margin: 80px 0 20px;
}

.logo-container h1 {
    font-size: 4.5em;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 20px;
    background-color: #2e2e2e;
    margin-bottom: 20px;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
}

.content-container:nth-child(even) {
    flex-direction: row-reverse;
}

.text {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.image {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.image img {
    width: 75%;
    height: auto;
    max-width: 768px;
    display: block;
}

/* Ensure alignment consistency */
.content-container:nth-child(odd) .image {
    margin-left: auto;
    margin-right: 0;
}

.content-container:nth-child(even) .text {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.content-container:nth-child(odd) .text {
    text-align: left;
    margin-left: auto;
    margin-right: 0;
}

.content-container:nth-child(even) .image {
    justify-content: flex-start;
}

h2 {
    font-family: "Noto Sans", serif;
    font-weight: 200;
    font-style: normal;
}

.highlight-noise {
    color: #156082;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    margin-top: 20px;
}
