/* Fonts */
@font-face {
    font-family: 'BerlinSans';
    src: url('BRLNSDB.TTF') format('truetype');
}
@font-face {
    font-family: 'JuliusSans';
    src: url('JuliusSansOne-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Outfit';
    src: url('Outfit-VariableFont_wght.ttf') format('truetype');
}
/* Text */
p, input, textarea, select, label {
    font-family: Outfit;
}
/* Buttons */
.btn {
    font-family: JuliusSans;
    font-weight: bold;
}
.btn-wide {
    width: 200px;
    padding-top: 1em;
    padding-bottom: 1em;
}
/* Remove default red box around hyperlinks when focussed */
a:focus {
    outline: none;
}
/* Remove dropdown arrows in menu */
.dropdown-toggle::after {
    content: none;
}
/* Custom class to underline certain hyperlinks when focussed */
.link-underline-focus:hover, .link-underline-focus:focus {
    text-decoration: underline !important;
}
/* Custom class for debugging html layouts */
.red-border {
    border: solid 3px red;
}
