@font-face {
    font-family: 'Calibri';
    src: url('fonts/calibri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Swiss921 BT';
    src: url('fonts/TT0562M.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Calibri', sans-serif;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;

    height: 100dvh;
    width: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;

    background-image: url("images/background.jpg");
    background-attachment: fixed;
    background-size: 100% 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    overflow: auto;

    padding: 20px 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;

    border: 2px solid #999999;
    background-color: #eeeeee;

    display: grid;
    grid-template-rows: 3fr 1fr;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a {
    color: black;
}

p {
    margin: 8px 0;
}

span {
    width: 10px;
}

h1 {
    font-family: 'Swiss921 BT', sans-serif;
    font-weight: normal;
    font-size: xxx-large;
}

h3 {
    font-weight: normal;
    margin: 0;
}