*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background-image: url(image/pexels-pixabay-531880.jpg);
    height: 100vh;
}
/* complete conteiner style */
.head-div{
    margin: 50px;
    width: 90%;
    height: 90%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 10px 15px 35px black;
}

/* header style */
header{
    display: flex;
    padding: 25px;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* paragraf style */
.your-wevsite{
    font-size: 30px;
}

/* navbar style */
nav{
    width: 30%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}


/* link style */
a{

    text-decoration: none;
    color: black;
}

/* button style */
.button1{
    width: 100px;
    height: 35px;
    border-radius: 50px;
    background-color: blue;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*section style */
.section-1{
    padding: 100px 150px 0 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* hedin h1 style */
h1{
    font-size: 50px;
}

/* image style */
.image{
    height: 350px;
    width: 350px;
    border-radius: 20px;
}
/* below style */
.button-name{
    border: none;
    width: 130px;
    height: 35px;
    border-radius: 50px;
    background-color: blue;
    color: white;
    margin: 20px;
    cursor: pointer;
}
/* all paragraf slyle */
p{
    
    padding: 5px;
}

