*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body{
    font-family: 'prompt', sans-serif;
    background-color: rgb(58, 171, 175);
    color: rgb(211, 44, 38);
}
h1,h2,h3{
    margin-top: 1rem;
    font-weight: 500;

}
a{
    text-decoration: none;
    color: rgb(64, 46, 230);

}
ul{
    list-style: none;
}
.main-header{
    background-color: rgb(215, 164, 238);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.beer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100;
    margin: auto;
    padding: 0 2rem;
}
.logo{
    font-size: 1rem;
    font-weight: 700;
}
 .nav-links{
    display: flex;
    gap: 2rem;
 }   
 .nav-links a:hover{
    color: black;
 }
.nav-links a{
    transition: color 0.3s ease;
}
.hero-section{
  height: 90vh;
  display: flex;
  justify-content: center;
  background-color: rgb(108, 196, 223);
  align-items: center;
  text-align: center
} 
.hero-section{
    font-size: 2rem;
    margin-bottom: 1rem;
}
.btn{
    display: inline-block;
    background-color: rgb(98, 179, 211);
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease ;
}
.btn:hover{
    background-color: brown;
}
.about-section, .contact-section{
    padding: 4rem 2rem;
    text-align: center;
    background-color: azure;
    
}
.mb2{
    margin-bottom: 1rem;
}
.Projects-section{
    padding: 4rem 2rem;
    background-color: rgb(91, 211, 219);
    text-align: center;
}
.Projects-beer{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: auto;
    
}
.Projects-eee{
    background-color: rgb(248, 183, 183);
    border: 1px rgb(233, 34, 166);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgb(115, 74, 211);
    transition: transform 0.3 ease;
    

}
.Projects-eee:hover{
    transform: translate(-5px);

}
.Projects-eee img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}
.Projects-eee h3{
    margin: 0.5rem;
    font-size: 1.5rem;

}
.btn-small{
    align-items: center;
    text-align: center;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgb(62, 117, 218);
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}
.btn-small:hover{
    background-color: rgb(233, 31, 172);
    color: aqua;
}
.main-footer{
    background-color: rgb(58, 220, 231);
    color: rgb(36, 63, 218);
    text-align: center;
    padding: 1.5rem 0 ;
}



