{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #8ba7db; 
    font-family: 'Inter', Arial, sans-serif;
    color: black; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
}

nav a {
    text-decoration: none;
    color: black; 
    transition: opacity 0.3s;
}

.nav-links a {
    margin-left: 30px; 
    text-decoration: none;
    color: black;
}

.hero-section {
    flex-grow: 1; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    text-align: center;
}

.name-container {
    display: flex;
    flex-direction: column;
    align-items: center;   
    gap: 20px;            
}

.profile-img {
    max-width: 150px;
    height: auto;
}

.name-text {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1.5rem;
    font-weight: 300;
}


.projects-container {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto; 
}

.project-item {
    text-decoration: none;
    color: white;
    display: block;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1); 
    margin-bottom: 15px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.project-item:hover img {
    transform: scale(1.03); 
}

.project-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}
.scrolling-projects {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px; 
}

.project-card {
  
    width: 40%; 
    max-width: 500px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.project-image-box img {
    width: 100%;
    height: auto;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.project-info h2 {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}