﻿@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Oswald:wght@500&display=swap');

html, body {
    font-family: Oswald, Tahoma, sans-serif;
    font-size: 18pt;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    display: grid;
    place-items: center;
    background: url("bg.jpg") no-repeat center center fixed;
    background-size: cover;
}

body::before {
  content: " ";
  position:absolute; top:0; left:0; right:0; bottom:0;
  background-color: rgba(151, 175, 255, 0.95);
}

#header { z-index: 1; background-color: rgba(0, 0, 0, 0.9); padding: 20px; color: white; }

.heading {
    font-family: Bowlby One SC;
    font-size: 55px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: underline;
    color: blue;
}

.footer {position: absolute; bottom:0; text-align: center; font-size: small; }