* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy";
  color: white;
}
html,
body {
  height: 100%;
  width: 100%;
}
#main {
  height: 100%;
  width: 100%;
  background-color: #111;
  position: relative;
}
.elem {
  height: 80px;
  width: 100%;
  border-bottom: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.elem h1 {
  font-size: 2vw;
  position: relative;
  z-index: 9;
  mix-blend-mode: difference;
}
.elem img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  position: absolute;
  /* transform: translate(-50%,-50%); */
  opacity: 0;
}
