/* poppin font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Inter font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  background-color: ;
  /* overflow: hidden; */
  font-family: "inter", sans-serif;
}
header{
    background-color: #4158D0;
background-image: -webkit-linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
background-image: -moz-linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
background-image: -o-linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);

padding:10px

}

html,body {
  width: 100%;
  height: 100%;
  /* overflow-y: scroll; */
}
#main{
  width: 100%;
  overflow-x: hidden;
  /* height: 100%; */
  background: #111;
  position: relative;
}

.elem {
    
  height: 150px;
  width: 100%;
  /* background-color: red; */
  border-bottom: 0.1px solid white;
  
  display: flex;
  justify-content: flex-start;
  align-items: center;
 
}
.elem h1 {
  font-size: 5.5vw;
  position: relative;
  z-index: 10;
  mix-blend-mode: difference;
  padding-inline: 20px  ;
}

.elem>img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    opacity: 0;
    /* transform:translate(-180px, -180px); */
  border-radius: 50%;
  transition: all linear 0.3s;   
}
