body{
    font-family: 'Courier New', Courier, monospace; 
    margin: 0px;
    background-color: black;
}

#header{
    height: 900px;
    /* background-color: #1f2026; */
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    text-align: center;
    font-family: 'Courier New', Courier, monospace; 
}

#main-content{
    background-color: rgb(0, 0, 0);
    color: white;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    height: 1500px;
}

#homepage-main-content1{
    background-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    height: 700px;
}

#homepage-main-content2{
    background-color: rgb(255, 255, 255);
    color: white;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    height: 1500px;
}

#footer {
    background-color: black;
    color: white;
    text-align: center;
    height: 50px;
    line-height: 50px;
}
h1{
    font-size: 6em;
    padding-top: 300px;
    letter-spacing: 10px;
    font-weight: 100;
    margin: 0px;
}

h2{
    font-size: 2em;
    margin: 0px;
    font-weight: 100;
}
h3{
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 0px;
}
p{
    margin-left: 30px;
    width: 800px;
}
ul{
    width: 700px;
    margin-left: 30px;
}

#main-content h2{
    font-size: 2.5em;
    margin: 0px;
    text-shadow: 10px 10px 10px black;
}

.button-container{
    display: flex;
    flex-direction: row;
    justify-content: center; 
    text-align: center;
    max-width: 960px; 
    margin: 0 auto;
}

.button {
    display: inline-flex;
    justify-content: center;
    background-color: #000000;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1em;
    width: 200px;
    height: 75px;
    transition: transform 0.3s;
    margin: 10px 40px 10px 0px;
}

.button:hover {
    transform: scale(1.15); 
}

.primaryContainer{
    display: flex;
    /* background-color: aqua; */
    width: 1300px;
    height: 600px;
    margin: 0 auto;
}

.textContainer{
    /* background-color: blue; */
    width: 900px;
    height: auto;
}

.imageContainer{
    /* background-color: green; */
    width: 400px;
    height: auto;
    margin-top: 20px;
}

.textimage{
    width: 350px;
    height: auto;
}

.galleryPrimaryContainer{
    display: flex;
    /* background-color: yellow; */
    width: 1300px;
    height: 480px;
    margin: 0 auto;
}
.galleryContainer{
    /* background-color: purple; */
    width: 325px;
    height: auto;
}
.galleryimage{
    width: 305px;
    margin: 10px;
    height: auto;
}

.bigimageContainer{
    width: 1300px;
    height: 1000px;
    margin: 0 auto;

}
.bigimage{
    width: 1280px;
    height: auto;
    margin: 10px
}

/* Style the navigation bar */
.navbar {
    font-family:'Courier New', Courier, monospace;
    overflow: hidden;
    background-color: black;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    z-index: 1000; /* Ensure the navbar is above other content */
}

/* Style the links inside the navigation bar */
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    text-shadow: 0 0 100px white, 0 0 1px white, 0 0 15px white;
}

/* Container for the nodes and arrows */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 85px;
    /* margin-top: 20px; */
}

.node {
    letter-spacing: 0.5px;
    width: 180px;
    height: 80px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 400; 
    text-align: center;
    position: relative;
    animation: pulse 3s infinite ease-in-out;
    text-decoration: none;
}

.node:hover {
    animation: none; /* Disable pulse animation on hover */
    transform: scale(1.15); /* Apply hover scaling */
    transition: transform 0.3s; /* Transition for smooth hover */
}

/* Arrow styling */
.arrow {
    width: 8px;
    height: 8px;
    background-color: rgb(255, 255, 255);
    position: relative;
    margin-left: -10px;
    flex-shrink: 0;
  }
  
  .arrow::after {
    content: "";
    position: absolute;
    top: -6px;
    right: -18px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent rgb(255, 255, 255);
  }
  
  #node-navigator {
    
    height: 300px;
    background-color: rgb(0, 0, 0);
  }

/* Global styling */
.body_resume {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.container_resume {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
    background-color: rgb(225, 225, 225);
    border-radius: 20px;
    box-shadow: -8px -8px 30px 4px rgba(255, 255, 255, 0.253);
    min-width: 600px;
}


.button-container {
    padding-top: 40px;
    display: flex;
    align-items: center;    /* Center vertically */
    flex-wrap: wrap;
    justify-content: center; /* Center align the buttons */
    gap: 20px; /* Reduce gap for smaller screens */
}

.social-button {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px; /* Slightly wider for more spacing */
    height: 50px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.social-button img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
    transition: transform 0.2s;
}

.social-button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* .social-button:hover img {
    transform: scale(1.1);
} */

.github {
    background-color: #333; /* Darker gray for GitHub */
}

.linkedin {
    background-color: #0077b5; /* Standard LinkedIn color */
}

.pdf {
    background-color: #d32f2f; /* Red for PDF to signify importance */
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-button {
        width: 100%; /* Full width on smaller screens */
        height: 60px; /* Taller for touch interaction */
        font-size: 16px; /* Larger text */
    }
}
