* {
    box-sizing: border-box;
}
body {
    min-height: 100vh;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    background-color: #ffffff;
    border-bottom: 2px solid;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo span {
    font-size: 1.5rem;
    font-weight: bolder;
}
.logo img {
    width: 6rem;
    height: auto;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.Welcome span {
    text-align: center;
}
.About-me {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}
.About-me img {
    width: 20%;
    height: auto;
}
.projects {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}
.projects a {
    display: block;
    width: 100%;
    height: 100%;
}
.projects > div {
    width: 30%;
    aspect-ratio: 16/9;

}
.project-AI {
    background-image: url("/assets/index-materials/AI-recognising-phone.webp");
    background-size: cover;
}
.project-arduino {
    background-image: url("/assets/index-materials/smart-bulb.webp");
    background-size: cover;
}
.project-bc {
    background-image: url("/assets/index-materials/business-card.webp");
    background-size: cover;
}
.project-GIFt {
    background-image: url("/assets/index-materials/GIFt.webp");
    background-size: cover;
}
.project-ggl {
    background-image: url("/assets/index-materials/google.webp");
    background-size: cover;
    background-position: 50% center;
}
.project-space {
    background-image: url("/assets/index-materials/nasa.webp");
    background-size: cover;
}
.project-passenger-counter {
    background-image: url("/assets/index-materials/passenger-counter.webp");
    background-size: cover;
}