@font-face {
    font-family: 'SourceSansProRegular';
    src: url('/fonts/SourceSansPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SourceSansProBold';
    src: url('/fonts/SourceSansPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SourceSansProSemiBold';
    src: url('/fonts/SourceSansPro-SemiBold.ttf') format('truetype');
    font-weight: 600; /* Semi-bold font weight */
    font-style: normal;
}

@font-face {
    font-family: 'SourceSerifProRegular';
    src: url('/fonts/SourceSerifPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SourceSerifProSemiBold';
    src: url('/fonts/SourceSerifPro-SemiBold.ttf') format('truetype');
    font-weight: 600; /* Semi-bold font weight */
    font-style: normal;
}

@font-face {
    font-family: 'SourceSerifProBold';
    src: url('/fonts/SourceSerifPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}



html {
    height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}


body {
    height: 100%;
    color: #000000;
    background-color: #fbf9f7;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

main {
    width: 100%;
    padding: 15px;
    margin: auto;
}

h1, h2, h3, h4, h5 {
    font-family: 'SourceSerifProRegular', sans-serif;
}

p {
    font-family: 'SourceSansProRegular', sans-serif;
}