* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

nav {
    height: 80px;
    background: #212124;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
}

nav a {
    color: #fff;
}

nav a:hover {
    background: linear-gradient(to bottom, #87ceeb, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.logo {
    max-width: 100px;
    height: auto;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: absolute;
    top: -10;
    left: 0;
    padding: 0;
}

h2 {
    font-size: 10rem;
    background: linear-gradient(to bottom, #87ceeb, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero {
    background-image: url('ocean.jpg');
    background-color: #212124;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    font-size: 10rem;
    background: linear-gradient(to bottom, #87ceeb, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-container h1 {
    font-size: 10rem;
}

.hero-container .introduction {
    font-size: 8rem;
}

.hero-container .identity {
    font-size: 2.5rem;
}

.portfolio {
    background: #141418;
    padding: 50px 20px;
    text-align: center;
}

.portfolio h2 {
    font-size: 10rem;
    background: linear-gradient(to bottom, #f7bb97, #dd5e89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.portfolio-item {
    background: #212124;
    color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.portfolio-item h3 {
    margin-bottom: 10px;
}

.portfolio-item p {
    margin-bottom: 15px;
}

.portfolio-item a {
    color: #0073e6;
    text-decoration: none;
}

.about {
    background-color: #141418;
}

.about h2 {
        font-size: 10rem;
    background: linear-gradient(to bottom, #753a88, #cc2b5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.about-container p {
    margin: 20rem;
    font-size: 3rem;
    color: #fff;
}

.contact {
    height: 200px;
    background: #212124;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
}

.contact h3 {
    color: #fff;
    font-weight: bold;
}

.contact a {
    color: #fff;
}

.contact a:hover {
    background: linear-gradient(to bottom, #87ceeb, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 8px; /* Set width of the scrollbar */
}

/* Track (background of the scrollbar) */
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #23232e; /* Adjust to match your theme */
}

/* Thumb (the draggable part of the scrollbar) */
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #6b6b7e; /* Adjust to match your theme */
    border-radius: 10px; /* Rounded corners */
}

/* Optional: add hover effects or other styles */
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Ensure all scrollable containers have the custom scrollbar */
.scroll-container {
    overflow-y: auto; /* Enable vertical scrollbar */
    max-height: 300px; /* Adjust height as needed */
    /* Additional styles for specific scrollable containers */
}
