*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body{
    font-family: 'prompt',sans-serif;
    background-color: rgb(166, 213, 228);
    color: black;
}
h1,h2,h3{
    margin-top: 1rem;
    font-weight: 700;
}
a{
    text-decoration: none;
    color: rgb(138, 17, 84);
}
ul{
    list-style: none;
}
.main-header{
    background-color: rgb(235, 188, 211);
    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: rgb(161, 241, 228);
}
.nav-links a{
    transition: color 0.8s ease;
}
.hero-selection{
    height: 90vh;
    display: flex;
    justify-content: center;
    background-color: rgb(165, 239, 245);
    align-items: center;
    text-align: center;
}
.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.btn{
    display: inline-block;
    background-color: #f35ed3;
    padding: 0.5rem 1rem;
    margin-top: 3rem;
    border-radius: 10px;
    transition: background-color 0.5s ease;
}
.btn:hover{
    background-color: rgb(155, 155, 155);
}
.about-section, .contact-section{
    padding: 4rem 2rem;
    text-align: center;
    background-color: #acf8eb;
}
.mb2{
    margin-bottom: 1rem;
}
.project-section{
    padding: 4rem 2rem;
    background-color: #78b7f1;
    text-align:center ;
}
.project-nongbeer{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}
.project-card{
    background-color: rgb(148, 220, 233);
    border: 3px solid rgb(252, 242, 111);
    border-radius: 5px;
    box-shadow: 0 2px 10px white;
    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;
}
.project-card p{
    margin-bottom: 1rem;
}
.btn-small{
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgb(255, 130, 193);
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: background-color  0.5s ease;
}
.btn-small:hover{
    background-color: rgb(151, 243, 212);
}
.main-footer{
    background: #e0b1ee;
    color: aliceblue;
    text-align: center;
    padding: 1.5rem 0;
}
.project-card p{
    padding: 1rem;
}
.project-section h2{
    margin-bottom: 1rem;
}
.about h1{
    padding-left: 5rem;
}
.p{
    display: flex;
    max-width: 1100px;
}
p{
    margin: 2rem;
}
 img{
    width: 200px;
    border: #00000050;
 }
 .top{
    margin-bottom: 5rem;
 }
.call{
    text-align: center;
}
.project-nongbeer work-gallery { 
    background-color: #acf8eb;
border: 1px solid rgb(161, 241, 228);
border-radius: 2px;
box-shadow: 0 5px 10px white;
transition: transform 0.3s ease;
margin: 2rem;
}
img{
    border: 1px solid rgb(155, 155, 155);
    border-radius: 5px;
    box-shadow: 0 1px 5px rgb(252, 242, 111);
}
p{
    text-align: center;
}













