<!DOCTYPE html>

<html lang="es">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Logo centrado</title>

  <style>

    body {

      margin: 0;

      height: 100vh;

      display: flex;

      justify-content: center;

      align-items: center;

      background-color: white; /* puedes cambiarlo si quieres */

    }


    img {

      max-width: 300px; /* ajusta el tamaño del logo */

      height: auto;

    }

  </style>

</head>

<body>


  <img src="logo.png" alt="Mi Logo">


</body>

</html>