body {
background-color: #181717;
color: #ffffff;
font-family: "Poppins", sans-serif;
scrollbar-width: thin;
scrollbar-color: #00bcd4 #282828;
height: 100vh;
width: 100vw;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #282828;
}
::-webkit-scrollbar-thumb {
background: #00bcd4;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #008ba3;
}

header {
    width: 100%;
    height: 20%; /* Adjust the height of the header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 30%; /* Make the image take the full width */
    height: auto; /* Adjust height to maintain aspect ratio */
    display: block; /* Removes unwanted space below the image */
    margin-top: 20px; /* Add some space between header and image */
}

/* Side nav using <nav> */
nav.side-nav {
position: fixed;
top: 0;
left: 0;
width: 200px;
height: 100%;
background-color: #222;
transform: translateX(-180px); /* mostly hidden, 20px visible */
transition: transform 0.3s ease;
z-index: 1000;
}

/* Slight visible tab */
nav.side-nav::before {
content: "";
position: absolute;
top: 0;
right: -20px;
width: 20px;
height: 100%;
background-color: #222;
cursor: pointer;
}

/* Slide out on hover */
nav.side-nav:hover {
transform: translateX(0);
}

/* Nav links */
nav.side-nav ul {
list-style: none;
padding: 20px;
margin: 0;
}

nav.side-nav ul li {
margin: 20px 0;
}

nav.side-nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
}

nav.side-nav ul li a:hover {
text-decoration: underline;
}

section {
    padding: 60px;
    width: 100%;
    text-align: center;
    position: relative;
}

section img {
    width: 100%; /* Ensure the image doesn't exceed the section's width */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: rounding corners of the image */
    margin-bottom: 20px; /* Space below the image */
}

h1 {
font-size: 3em;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
position: relative;
}

h2 {
font-size: 2.5em;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
position: relative;
}

p {
    font-size: 2em;
    color: #008ba3;
}

/* Optional: Change color when hovering over the link */
a:hover {
    color: #b38702; /* Set color to red when hovered */
}

footer {
text-align: center;
padding: 20px;
background-color: #282828;
}

.top-right-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%; /* Adjust the size of the image */
    height: auto; /* Maintain aspect ratio */
}

.gradient-heading {
    background: linear-gradient(to right, #ffd501, #037eaf); /* Gradient colors */
    background-clip: text; /* Standard version */
    -webkit-background-clip: text; /* Clip the background to the text */
    color: transparent; /* Make the text color transparent */
    font-size: 3rem; /* Adjust font size */
    font-weight: bold; /* Optional for styling */
}

.gradient-text {
    background: linear-gradient(to right, #b3d5df, #014864); /* Gradient colors */
    background-clip: text; /* Standard version */
    -webkit-background-clip: text; /* Clip the background to the text */
    color: transparent; /* Make the text color transparent */
    font-size: 3rem; /* Adjust font size */
    font-weight: bold; /* Optional for styling */
}

.project-title {
    padding-top: 2.5%;
    font-size: 2em;
    background: linear-gradient(to right, #b3d5df, #014864);
    background-clip: text; /* Standard version */
    -webkit-background-clip: text; /* Clip the background to the text */
    color: transparent; /* Make the text color transparent */
}