@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --purple: rgb(131, 0, 85);
    --blue-primary: rgb(0, 10, 63);
    --fc: rgb(240, 250, 250);
    --blue-translucent: rgba(25, 0, 80, 0.4);
    
    color: var(--fc);

    font-family: "Inter", "Roboto", Arial, Helvetica, sans-serif;
}

body {
    background: var(--purple);
    background: -moz-linear-gradient(top, var(--purple) 0%, var(--blue-primary) 100%);
    background: -webkit-linear-gradient(top, var(--purple) 0%, var(--blue-primary) 100%);
    background: linear-gradient(to bottom, var(--purple) 0%, var(--blue-primary) 100%);
}

a, p.anchor-like {
    color: rgb(200, 220, 230);
    text-decoration: underline;
}
a:visited { color: rgb(150, 180, 200); }

table, h1, address, button {
    margin: 0.5rem;
}

table, h1, button {
    border: 3px solid var(--fc);
}

h1, button {
    padding: 1rem;
}

table {
    background-color: rgba(245, 245, 200, 0.2);
}

h1 {
    display: inline-block;
    font-size: 30px;
}
