*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    scroll-behavior: smooth;
}
body{
    background-color: rgba(54, 44, 44, 0);
    color: rgb(255, 60, 0);
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: 'Kanit';
}
h1,h2,h3{
    margin-top:1rem ;
    font-weight: 800;
    text-align: center;
}

a{
    text-decoration: none;
    color: blueviolet;
}
ul{
    list-style: none;
}
.main-header{
    background-color: rgb(255, 167, 167);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar{
    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: aqua;
}
.nav-links a{
    transition: color 0.3s ease;
}
.hero-section{
    height: 90vh;
    display: flex;
    justify-content: center;
    background-color: rgb(9, 255, 202);
    text-align: center;
    align-items: center;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
   
}

.btn{
    display: inline-block;
    background-color: rgb(59, 0, 114);
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
.btn:hover{
    background-color: rgb(67, 252, 252);
}
.about-section ,.contact-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgb(235, 239, 247);

}
.bee{
    margin-bottom: 1rem;
}
.Projects-section{
    padding: 4rem 2rem;
    background-color: aliceblue;
    text-align: center
}
.Projects-bee{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
}
.Project-card{
    background-color: rgb(240, 230, 230);
    border: 1px solid rgb(241, 163, 179);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgb(12, 12, 12);
    transition: transform 0.3s ease;
}
.Project-card:hover{
    transform: translateY(-5px);
}
.Project-card img{
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    display: block;
}
.Project-card h3{
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
}
.bnk-small{
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgb(255, 106, 235);
    border-radius: 5px;
    margin-bottom:1rem ;
    transition: background-color 0.3s ease;
}
.Project-card p{
    margin-bottom: 1rem;
}
.bnk-small:hover{
    background-color: rgb(107, 201, 230);
}
.main-header{
    background-color: rgb(0, 231, 58);
    color: aliceblue;
    text-align: center;
    padding: 1.5rem;
}
.main-footer{
    text-align: center;
    background-color: rgb(30, 255, 0);
    color: rgb(0, 0, 0);
    padding: 1.5rem 0;
}
