body {
    background-image: url("../media/background.jpg");
    background-size: cover;
    background-attachment: fixed; margin: 20px 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 150%;
}

div.container {
    background-color: rgb(207, 159, 255);
    color: rgb(112, 41, 99);
    border: 2px solid rgb(93, 63, 211);
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgb(191, 64, 191);
}

p {
    margin: 10px 0;
    line-height: 110%;
}

h1 {
    font-size:1.5em;
    text-align: center;
    padding: 10px;
    color: rgb(207, 159, 255);
    text-shadow: 3px 5px 6px rgb(191, 64, 191);;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to left, rgb(93, 63, 211) 30%, rgb(191, 64, 191));
}

h1:before, h1:after {
    content: "~";
    padding: 5px;
}

a:link {
    color: rgb(93, 63, 211);
}

a:visited {
    color: rgb(191, 64, 191)
}

a:hover {
    color: rgb(112, 41, 99)
}

    
a[href^="mailto"]:before {
    content: "📧";
    padding-right: 5px;
    display: inline-block;
}

table {
    border: 5px solid rgb(93, 63, 211);
    width: 100%;
    background-image: url("../media/table.jpg");
    background-size: cover;
    color: rgb(207, 159, 255);
}

table td {
    border: 1px solid rgb(93, 63, 211);
}

table th {
    font-weight: bold;
    padding: 5px;
}

th {
    text-align: center;
}

footer {
    text-align: center;
    padding: 10px;
}