/*Color Scheme*/
:root {
    --light-color: EBEBEB;
    --dark-color: 3B3B3B;
}

/*Fonts*/
@font-face {
    font-family: 'Berolina';
    src: url('Berolina.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bookman Old Style';
    src: url('BookmanOldStyle.woff2') format('woff2'),
        url('BookmanOldStyle.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/*Hiding Scrollbars*/
html::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    background-color: var(--light-color);
}

/*Elements*/
header {
    text-align: center;
    height:auto;
    padding:6vh;
    vertical-align: middle;
    color: var(--dark-color);
}

h1 {
    font-size: clamp(57pt, 12vw, 12vw);
    font-family: 'Berolina'; font-weight: normal; font-style: normal;
    margin-bottom: -3vh;
    margin-top: 0px;
}

h2 {
    font-size: clamp(23.5pt, 5vw, 5vw);
    font-family: 'Bookman Old Style'; font-weight: 300; font-style: normal;
    margin-top: -1vh;
    margin-bottom: 0px;
}

hr {
    width:60%;
    min-width: 360px;
}

p b {
    font-family: 'Bookman Old Style'; font-weight: 500; font-style: normal;
}