@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
        body {
            background-color: black;
            font-family: Arial, Helvetica, sans-serif;
        }
        div {
            background-color: white;
            display: inline-block;
            border: 3px solid black;
            height: 200px;
            width: 200px;
            border-radius: 12px;
            text-align: center;
            padding: 2px;
            font-family: 'Source Code Pro';

        }
        div:hover {
            background-color: red;
            

        }
        h1#principal {
            background-color: white;
            border-radius: 5px;
            text-align: center;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        div#pagina2 {
            background-color: rgb(118, 241, 118);
            padding: 2px;
        }