*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
}
html , body{
    height: 100%;
    width: 100%;
}

main {
    width: 100%;
    height: 100%;
    background-color: #223;
    overflow: hidden;
}

.ele {
    width: 100%;
    height: 25%;
    border-bottom: 2px solid #fff;
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: flex-start; */
}

.ele h1 {
    font-size: 8vw;
    position: absolute;
    z-index: 5;
    mix-blend-mode: difference;
    cursor: pointer;
}

.ele img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transform: translate(-50%, 0);
    transition: all ease 0.2s;
}