/*initialized index.css*/
*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*header styling*/
.header{
  position: fixed;
  box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
  background-color: white;
  height:60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  z-index: 10;
  height: 60px;
  padding: 0 20px;
}

/*body styling*/
body{
  background-color: rgb(255, 240, 246);
  padding: 20px;
}

/*header styling*/
h1{
  font-family: Tangerine;
  font-style: italic;
  font-weight: bolder;
  font-size: 55px;
  margin-right: 20px;
  color: rgb(255, 105, 180);
  text-shadow: 1px 1px 4px rgb(255, 192, 203);
}

/*paragraph styling*/
p{
  font-family: Tangerine, arial ;
  font-size: 40px;
  font-style: italic;
  text-shadow: 1px 1px 3px  rgb(251, 204, 224);
 
}

/* left section of the header styling*/
.left-section{
  display: flex;
  align-items: center;
}

/* logo styling*/
.logo{
  width: 60px;
  height: 50px;
  margin-left:10px;
  margin-right:15px;
  border-radius:  10px;
  box-shadow: 0 2px 6px rgba(255, 105, 180, 0.2);
}


/* right section of the header styling*/
.right-section{
  width:200px;
  display: flex; 
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
  flex-shrink: 0;
}

/*icons stylin in the heading*/
.home, .about, .contact, .gallery{
  height: 30px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  color: rgb(204, 51, 102);
  font-weight: bold;
}

/*hovering and active styling of the heading icon*/
.home:hover,
.about:hover,
.contact:hover {
  background-color: rgb(255, 228, 240);
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.home:active,
.contact:active {
  background-color: rgb(255, 153, 187);
  color: white;
  transition: 0.4s;
}

/*frame picture styling in the home page*/
.frame{
  display: flex;
  width: 300px;
  height:400px;
  object-fit: conver;
  border: solid 7px white ;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); 
  margin-bottom: 10px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2);
  transition: transform 0.3s ease;
}

/*hovering style on the frame*/
.frame:hover {
  transform: scale(1.03);
}

/*introduction of the web styling*/
.intro{
  display: flex;
  flex-direction: row;
  background-color: rgb(255, 228, 240);
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 20px;
  border-radius: 60px 60px 60px 60px;
  box-shadow: inset 0 -10px 30px rgba(255, 182, 193, 0.2);
}

.info{
  margin-left: 20px;
  margin-left: 20px;
  max-width: 500px;
  color: rgba(75, 0, 51, 0.8);
  line-height: 1.7;
}

