/* Apply Poppins font to the entire body */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(0, 0, 0);
    margin: 0; /* Ensure no default margin */
    padding: 0; /* Ensure no default padding */
}

.navbar-dark .navbar-nav .nav-link {
    font-weight: 100;
    font-size: 4vh;
    color: white;
    padding: 20px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ddd; 
}

.navbar-brand {
    font-weight: 100;
    padding-left: 4vw;
    font-size: 30px;
}
#navbarNav a:hover{
    color: #a7a7a7;
    text-decoration: underline;
    text-underline-offset: .5rem;
}

/* Ensure each page fits within the viewport */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; 
    min-width: 100%;
}
#homepage .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: 250px; /* Adjust this value as needed */
}


/* About Me card styling */
#aboutme .myname{
    font-weight: 100;
    font-size: 6vw;
    color: black;
}
#aboutme p{
    font-size: 25px;
}
#aboutme .card {
    font-size: 20px;
    font-weight: 200;
    height: 100%;
    border: 2px solid black;
}
#aboutme h2 {
    margin-top: 0; /* Remove default margin-top */
}
/* Styling for homepage heading */
#homepage h1 {
    font-size: 10vw; 
    margin: 0; 
    color: rgb(255, 255, 255);
    font-weight: 100;
}

/* Centering margins */
.my-5 {
    margin-top: auto;
    margin-bottom: auto;
}

/* Footer styling */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .page {
        padding: 20px;
    }

    #homepage h1 {
        font-size: 15vw; 
    }
}

/* Style for clickable text links */
a.text-custom {
    text-decoration: none; /* Remove underline */
    color: #333; /* Default color of the text */
    font-weight: 500; /* Optional: Make the text slightly bolder */
}

a.text-custom:hover {
    text-decoration: underline; /* Add underline on hover */
    color: #555; /* Slightly lighter color on hover */
}

#projects h1{
    font-size: 10vw;
    font-weight: 100;
}
#projects h2{
    font-weight: 100;
}
