* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}

html,
body {
  width: 100%;
  height: 100%;
}

#main {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
}

.elem {
  width: 100%;
  height: 120px;
  border-bottom: 5px solid #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.elem h1 {
  font-size: 9vw;
  font-weight: 800;
  position: relative;
  z-index: 9;
  mix-blend-mode: difference;
}

.elem img {
  background-color: #fff;
  width: 75px;
  height: 75px;
  object-position: center;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  transition: all linear 0.2s;
  opacity: 0;
}
