<?php 

include "../../root.class.php";
?>
<style>
    body{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        background: linear-gradient(45deg, #00ff00, #0000ff, #4b0082, #9400d3);
        background-size: 600% 600%;
        animation: gradient 15s ease infinite;
    }
    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }

    }

    .blocks{
        width:100vw;
        max-width: none;
        max-width: 100vw;
    }
</style>

<?php
$html = new html();
$html->add_styles_page();

echo $html->selectable_block("load_new.php","CAPTURE");
echo $html->selectable_block("view.php","VIEW");
