*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body{
    font-family: 'Kanit', sans-serif;
    background-color: rgb(192, 232, 250);
    color: ghostwhite;
}
h1,h2,h3{
    margin-top: 1rem;
    font-weight: 700;
}
a{
    text-decoration: none;
    color: lightblue;
}
ul{
    list-style: none;
}
.main-header{
    background-color: hotpink;
    padding: 1rem;
    position: sticky;
    top: 0; 
    z-index: 1000;   
}
.navber{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}
.logo{
    font-size: 1.5rem;
    font-weight: 700;
}
.nav-links{
    display: flex;
    gap: 2rem;
}
.nav-links a:hover {
    color: #cdc5ff;
}
.nav-links a{
    transition: color 0.8s ease;
}
.hero-selection{
    height: 90vh;
    display: flex;
    justify-content: center;
    background-color: thistle;
    align-items: center;
    text-align: center;
}
.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.btn{
    display: inline-block;
    background-color: mediumpurple;
    padding: 0.5rem 1rem;
    margin-top: 3rem;
    border-radius: 10px;
    transition: background-color 0.5s ease;
}
.btn:hover{
    background-color: #ccc4ff;
}
.about-section, .contact-section{
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fc7ca7;
}
.mb2{
    margin-bottom: 1rem;
}
.project-section{
    padding: 4rem 2rem;
    background-color: thistle;
    text-align: center;
}
.project-mint{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));        
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
}
.project-card{
    background-color: #ffc4e6;
    border: 1px solid #c17eff;
    border-radius: 8px;
    box-shadow: 0 2px 10px hwb(271 40% 2% / 0.761);
    transition: transform 0.3s ease;
}
.project-card:hover{
    transform: translateY(-5px);
}
.project-card img{
    width: 100%;
    height: auto;
    border-radius: 8px ;
    display: block;
}
.project-card h3{
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
}
.project-card p{
    margin-bottom: 1rem;
}
.btn-small{
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: palevioletred;
    border-radius: 8px ;
    margin-bottom: 5rem ;
    transition: background-color 0.5s ease;
}
.btn-small:hover{
    background-color: #d2a2ff;
}
.main-footer {
    background-color: mediumorchid;
    color: beige;
    text-align: center;
    padding: 1.5rem 0;
}
.INTRODUCT img{
    width: 200px;
    margin-left: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px#e24747;
}
.INTRODUCT-mine{
    text-align: center;
    font-size: 29px;
    margin-top: 25px;
}
.INTRODUCT{
   text-align: center;
   margin-top: 20px;
   font-size: 18px;
   color: #ff447cc5;
   margin-top: 35px; 
}
.myleft{
    text-align: center;
    background-color: #f5ccff; 
}