* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'notosans';
}

:root {
    --main-brand-color: #bd5353;
    --main-transparent-brand-color: #bd535361;

    --background-color-1: #e8e0d0;
    --background-color-2: #1a0e08;
    --background-color-3: #2b180e;

    --button-color-1: #d9d7d757;

    --text-color-1: #2a1a0a;
    --text-color-2: #c6c0bb;
    --text-color-3: #732b1f;
}

.lugrasimo {
    font-family: 'Lugrasimo';
}

.notosans {
    font-family: 'NotoSans';
}

@font-face {
    font-family: 'Lugrasimo';
    src: url('/Fonts/Lugrasimo.ttf');
}

@font-face {
    font-family: 'NotoSans';
    src: url('/Fonts/Notosans.ttf');
}


.section-title {
    display: flex;
    background: none;
    justify-content: center;
    padding-top: 0.6em;
    align-items: center;
}

.section-title-text {
    background: none;
    font-size: 2em;
    font-weight: 300;
    color: var(--text-color-1);
    width: auto;
    text-align: center;
    justify-content: center;

}

.section-title-line {
    display: flex;
    width: 30%;
    margin: 0 auto;
    height: 1px;
    background-color: var(--background-color-2);
}


