:root {
    --background-color: rgb(0, 0, 0);
    --border-color: rgba(255, 255, 255, 0.377);
    --highlight-color: rgb(126, 87, 194);
}

body {
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0px;
    overflow: hidden;
}

* {
    box-sizing: border-box;
}

nav {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

nav .nav-section {
    padding: 3rem 2rem;
    display: flex;
    gap: 1rem;
    border-left: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
}

#nav-mobile-section {
    display: flex;
    flex-basis: calc(100% * (2 / 3));
    z-index: 2;
}

#nav-social-section,
#nav-contact-section {
    flex-grow: 1;
}

#nav-logo-section {
    flex-basis: calc(100% / 3);
    /* justify-content: flex-start; */
}

#nav-social-section {
    gap: 3rem;
}

main {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

main>article>.article-title-section {
    align-items: center;
    justify-content: space-between;
    padding: 2rem 4rem;
}

#logo {
    border-radius: 40px;
}

h1 {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    color: white;
    /* margin: 0px; */
    font-size: 50px;
    text-transform: uppercase;
    text-align: center;
}

h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    color: white;
    /* margin: 0px; */
    flex-basis: 50%;
    font-size: 30px;
    text-align: center;
}

.Noham {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 50px;
    color: rgb(252, 227, 196);
}

footer {
    font-size: large;
    color: aliceblue;
    text-align: center;
    padding-bottom: 30px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}