body {
    background-color: #1a1a1a; /* Fondo oscuro */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo {
    width: 150px;
    height: 150px;
    background-color: #000;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); /* Efecto de resplandor suave */
}

.mask {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ffffff 30%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.eyes {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.eyes::before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -50px; /* Ajuste para poner los ojos un poco más arriba */
    left: 50%;
    transform: translateX(-50%);
}


