@font-face {
    font-family: patua-one;
    src: url("../assets/Patua_One/PatuaOne-Regular.ttf");
}

@font-face {
    font-family: poppins-extralight;
    src: url("../assets/Poppins/Poppins-ExtraLight.ttf");
}

@font-face {
    font-family: poppins-light;
    src: url("../assets/Poppins/Poppins-Light.ttf");
}

.intro
{
    font-family: Arial, Helvetica, sans-serif;
    width: fit-content;
    height: fit-content;
    color: #c9b000;
    margin: 0px 80px;
}

.intro p
{
    font-family: poppins-light;
    text-indent: 3em;
}

.frame
{
    width: fit-content;
    height: fit-content;
    font-family: monospace;
    font-size: 35px;
    color: aliceblue;
    margin-left: auto;
    position: relative;
}

body
{
    /* background-color: blue; */
    background-color: black;
    margin: 0;
    padding: 0;
}

.tab
{
    width: 100px;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}
.tab:hover
{
    width: 150px;
}
.tab1 { top: 0; background-color: red; }
.tab2 { top: 60px; background-color: orange; }
.tab3 { top: 120px; background-color: yellow; }
.tab4 { top: 180px; background-color: greenyellow; }
.tab5 { top: 240px; background-color: indigo; }
.tab6 { top: 300px; background-color: violet; }

#logo
{
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 50px;
    margin-bottom: 50px;
    z-index: 1;
    width: 700px;
    height: auto;
}

#new-section {
    position: relative;
    width: 100%;
    min-height: 400px; /* Adjust this value based on your needs */
    background-color: black;
    /* background-color: blue; Add some color for visibility */
}

.node
{
    /* fill: black; */
    fill: white;
    
    transition: fill 0.2s;
}

.node:hover
{
    fill: turquoise;
}

.link
{
    /* stroke: black; */
    stroke: white;
    /* stroke-opacity: 1; */
}

#new-section-flex-container
{
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns the SVG image to the right */
    /* padding: 0px 30px; */
}

#svg-top-right
{
    margin-top: 40px;
    margin-right: auto;
    width: 20%;
    height: auto;
}

#flex-container
{
    display: flex;
    width: 100%; /* Take up the full width of the parent container */
}

#left-section
{
    font-family: patua-one;
    flex: 1;
    /* background-color: blue; */

    color: white; /* Set the default text color to white */
    padding: 100px 10px 0px 10px;
    margin: 0px 30px;
}

#left-section h2 {
    font-weight: bold;
}

#rectangle {
    width: 100%;
    height: 10px;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 5px;
}

#project-list {
    list-style-type: none; /* Remove the default bullet points */
    padding: 0; /* Remove the default padding */
}

#project-list li {
    margin: 25px 0px;
    font-size: large;
    font-family: poppins-extralight;
    color: gray; /* Set the default text color to black */
}

#project-list li:hover {
    color: white; /* Change the text color to white on hover */
}

#right-section {
    flex: 2; /* This will take up 2/3 of the container's width */
    margin-left: 70px;
    width: 60%;
    /* height: 60%; */
    /* background-color: red; */
}

#section-intro
{
    font-family: poppins-light;
    font-size: 12px;
}


#projects-section {
    padding: 20px;
    padding-top: 100px;
    background-color: black;
    font-size: x-large;
    color: white;
}

.project
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.project img {
    width: 100%;
    height: auto;
}

.project h3 {
    font-family: patua-one;
}

.project p {

    font-family: poppins-light;
}


.project-title {
    font-family: patua-one;
    text-align: center;
    color: white;
    margin: 20px auto;
}



.project-right {
    display: flex;
    align-items: center;
}
.project-right img {
    flex: 1;
    margin-left: 20px;
    order: 2;
}

.project-left {
    flex-direction: row-reverse;
}



.project-left div {
    flex: 1;
    margin-right: 20px;
    order: 1;
}



/* SYSTEMS SECTION COMPONENTS */

.svg-systems
{
    width: 100%;
    height: auto;
    /* padding: 0px 20px; */
    /* margin: 0px 20px; */
}

#new-section-flex-container-systems
{
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns the SVG image to the right */
    padding: 0px 30px
}

#svg-top-right-systems
{
    margin-top: 40px;
    margin-right: auto;
    width: 20%;
    height: auto;
}

#right-section img
{
    width: 80%;
    height: auto;
}