/* font  */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* common  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}
h2,h2,h3,h4,h5,h6,p,a,ul,li{
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}
/* style start  */
header {
  background-color: #593636;
  position: relative;
}
.particles-js-canvas-el {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.contact_info{
  margin: 50px 0;
}
.contact_info h1{
  font-size: 55px;
  color: #FDA735;
}
.user_icon_circle{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FDA735;
  box-shadow: 0 0 5px rgb(0 0 0 / 13%);
  margin: auto;
  border: 2px solid #593636;
}
.user_icon_circle i, .contact_icon_circle i{
  color: #fff;
  font-size: 25px;
}
.contact_info h3{
  color: #593636;
  text-align: center;
}
.contact_icon_circle{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FDA735;
  box-shadow: 0 0 5px rgb(0 0 0 / 13%);
  margin: auto;
  border: 2px solid #593636;
}
footer{
  background-color: #FDA735;
  text-align: center;
  color: #593636;
  border-top: 1px solid #59363677;
}