*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    body{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        font-family: 'Courier New', Courier, monospace;
        background: #000000;
    }
    .container{
        display: flex;
    }

    .container .eyes{
        position: relative;
        width: 100px;
        height: 100px;
        display: block;
        background-color: #fff;
        margin: 0 20px;
        border-radius: 50%;
        box-shadow: 0 5px 45px rgba(0, 0, 0, 0.2), inset 0 0 25px #fff, inset 0 0 25px #767574;
    }

    .container .eyes::before{
        content: "";
        position: absolute;
        top: 50%;
        left: 35px;
        transform: translate(-50%,-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #000;
        border: 5px solid rgb(9, 0, 132);
        box-sizing: border-box;
    }
}


