@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300&display=swap');
body{
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
}
#navbar{
    cursor: pointer;
}
#navbar:hover{
    color: rgb(73, 73, 225);
}
section{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#navbar{
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}
h1{
    font-size: 18px;
    font-weight: 700;
}
.bold{
 font-size: 25px;
}
li{
    padding: 5px;
}
.nav-link{
    font-size: 15px;
    font-weight: bold;
    border: 2px solid transparent;
}
.nav-link:hover{
    border-bottom: 2px solid blue;
    transition: .1s;
}
/*-----home-----*/
span{
    color: blue;
    font-weight: bold;
}
p{
    font-size: 18px;
}
/*--About*/
#about img{
    width: 25rem;
    border-radius: 50px;
}
/*services*/
.card img{
    height: 200px;
    transition: 1s;
}
.inner{
    overflow: hidden;
}
.card img:hover{
    transform: scale(1.5);
    transition: 1s;
}
.card shadow:hover{
    border: 1px solid blue;
}
/*Contact*/
form{
    padding: 40px;
    box-shadow: 2px 2px 5px rgba(0,0,0,.2),
                -1px -1px 5px rgba(0,0,0,.05);   
     border-radius: 30px;                
}
h3{
    color: black;
}
h3:hover{
    color: black;
    background: transparent;
    border-bottom: 1px solid blue ;
    transition: .5ms;
    overflow: hidden;
}