*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    text-align: center;
}
body{
    font-family: "Chakra Petch", sans-serif;
    font-weight: 100;
    font-style: normal;
    background-color: rgb(223, 139, 139);
    color: rgb(240, 240, 245);
}
h1,h2,h3{
    margin-top: 1rem;
    font-weight: 700;
    text-align: center;
}
a{
    text-decoration: none;
    color:rgb(244, 244, 247) ;
}
ul{
    list-style: none;
}
.main-header{
    background-color:rgb(177, 166, 166) ;
    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;
}
.nav-links{
    display: flex;
    gap: 2rem;
}
.nav-links a{
    transition: color 0.3s ease;
}
.logo{
    font-size: 1.5rem;
    font-weight: 700;
}
.hero-section{
    height: 90vh;
    display: flex;
    justify-content: center;
    background-color: rgb(223, 139, 139);
    align-items: center;
    text-align: center;
}
.hero-conten{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-right: 3rem;
}
.contact-section{
    padding: 4rem 2rem;
    text-align: center;
    /* max-width: 20px; */
}
.main-footer{
    background-color: rgb(105, 4, 4);
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}
.contact-section{
    background-color: rgb(114, 5, 5);
}
.img{
    width: 15rem;
    margin: 4rem;
    border-radius: 2rem;
}
.bnk-small{
    display: inline-block;
    background-color: rgb(221, 107, 107);
    padding: 0.5rem 1rem;
    margin-top:1rem ;
    border-radius: 10px;
    transition: background-color 0.5s ease;
    text-align: center;
}
.bnk-small:hover{
    background-color: rgb(114, 9, 32);
}