    .eyes {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        margin-top: -25px;
    }
    
    .eyes>.eye {
        background: #fff;
        height: 45px;
        width: 75px;
        border-top: 2px solid #000;
        border-bottom: 2px solid #000;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        overflow: hidden;
        margin: 0 var(--margin-eyes);
    }
    
    .eyes>.eye>.globe {
        background-color: #000;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-top: -4px;
        display: flex;
        justify-content: flex-end;
    }
    
    .eyes>.eye>.globe::after {
        content: '';
        width: 15px;
        height: 15px;
        background: #fff;
        border-radius: 50%;
        margin: 8px;
    }