@font-face {
    font-family: 'BigBlueTerm437NerdFont';
    src: url('/assets/fonts/BigBlueTerm437NerdFont-Regular.ttf');
}

body {
    text-align: center;
    font-family: 'BigBlueTerm437NerdFont', monospace;
    background-image: url('/assets/bgs/background6.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;

    .content {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 20px;
        width: 85%;
        margin-top: 20px;
        border: 1px solid rgb(0,255,255);
    }

    /* texto */

    h1 {
        color: rgb(0, 0, 255);
        font-size: 36px;
    }
    
    h2 { color: rgb(255,0,0); }

    a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    h3 { color: rgb(0,255,255); }
    
    a:link { text-decoration:underline; }
    
    a:hover {
        color: rgb(0, 255, 255);
    }

    p {
        color: rgb(255, 255, 255);
        text-decoration: none;
    }
}