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

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

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

    /* texto */

    h1 {
        color: rgb(75,125,255);
    }
    
    h2 { color: rgb(255, 130, 134); }

    a {
        color: rgb(255, 255, 255);
        transition: color 0.3s ease;
    }

  a:hover, a:active {
    color: rgb(50,50,255); 
  }
    p {
        color: rgb(255, 255, 255);
    }