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

.content {
    background-color: rgba(0, 0, 0, 0.5);

        padding: 20px;
        width: 85%;
        margin-top: 20px;

    border: 1px solid blue;
}

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

    /* texto */

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

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

    a:hover {
        color: rgb(255, 140, 140);
    }

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