
/* Elemento unico, usado con ID */
#blueprint-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3057e1;
    background-image: 
        linear-gradient(#9fb3dc 1px, transparent 1px),
        linear-gradient(90deg, #9fb3dc 1px, transparent 1px),
        linear-gradient(#4a6de5 1px, transparent 1px),
        linear-gradient(90deg, #4a6de5 1px, transparent 1px);
    background-size: 
        100px 100px,
        100px 100px,
        20px 20px,
        20px 20px;
    background-position: 
        -1px -1px,
        -1px -1px,
        -1px -1px,
        -1px -1px;
}
/* Contenido generico. Usado como clase */
.content {
    position: relative;
    z-index: 1;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 20vh;
}

h1 {
    color: #ddff64;
    text-shadow: 0 0 10px rgba(221, 255, 100, 0.5);
}