/* Stylesheet */
:root{
    --txt_color: #fff;
    --alt_color: #8a2be2;
    --link_color: #00ae00;
}
.HomepageTitle {
font-family: verdana;
color:var(--alt_color);
}
body {
    background-image: url("images/Homepage-background-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-color:rgb(0, 42, 79);
}

p {
    color:var(--txt_color);
}
.centered{
    display:block;
    margin:auto;
    text-align: center;
}
a{
    color: var(--link_color)
}