body {
    padding: 0;
    margin: 0;

    box-sizing: border-box;

    font-family: Cabin;
    font-size: 25px;
    font-style: normal;
    font-weight: normal;

    background-color: var(--custom-gray);
    color: var(--custom-blue);

    --custom-blue: rgb(0, 0, 91);
    --custom-lightblue: #bbbfed;
    --custom-gray: rgba(135, 135, 135, 0.14);
}

ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

a {
    color: var(--custom-blue);

    text-decoration: none;
}

a:hover {
    color: var(--custom-lightblue);
}

address {
    font-style: normal;
}

#imprint {
    text-align: center;
}