body{
        margin: 40px;
    }
    h1{
        font-size: 18px;
        font-family: serif;
    }
    
    a{
        color: rgb(182, 158, 98);
        transition: color 0.2s ease;
    }
    a:hover{
        color: rgb(220, 182, 86);
        transition: color 0.1s ease;
    }
    a:active{
        color: rgb(223, 216, 175);
        transition: color 0.3s ease;
    }
