<?php
header('Content-Type: text/html; charset=utf-8');
//error_reporting(-1);
//ini_set('display_errors', 'On');

require 'vendor/autoload.php';
session_start(); 

#include 'includes/sendgridFunctions.php';
#sendgridFunctions::send("Not Found");

?>

<html>
<head>
<style>
html, body
{
    height: 100%;
    margin:0;
    padding:0;
}

._div {
    position:relative;
    height: 100%;
    width:100%;
}

._div img {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
}

.centered {
  position: fixed; /* or absolute */
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  font-size: 4em;
  color:#ffffff;
}

</style>
</head>
<body bgcolor="#23AECD">

	<div class="centered">
		Página no encontrada
	</div>
</body>
</html>
