I'm trying to recreate this exact flag of Saint Lucian. Although I can't figure out how to center the triangle, any help would be appreciated!
@charset "UTF-8";
.blue {
  width: 400px;
  height: 250px;
  background-color: #9EC4E0;
  position: absolute;
  z-index: -1;
}
.triangle-up {
 width: 0;
 height: 50px;
 border-left: 100px solid transparent;
 border-right: 100px solid transparent;
 border-bottom: 200px solid red;
}
 <!doctype html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Saint Lucia</title>
    <link href="style.css" rel="stylesheet" type="text/css">
  </head>
  <body>
    <div class="blue">
    <div class="triangle-up"></div>
    </div>
  </body>
</html>
 
     
     
    