@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root{
    font-size: 16px;

    --font-family-default: 'Signika';
    --font-family-modern: 'Poppins';
    --font-family-security: 'Open Sans';

    --color-red: #c7293f;
    --color-bg-1: #c9c1b4;
    --color-bg-2: #ececec;
    --color-bg-3: #7f97cc;
    --color-highlighter: rgba(255, 255, 255, 0.42);

    --header-high: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family-modern);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

body::-webkit-scrollbar{
    height: 0.5rem;
    width: 0.5rem;
}

body::-webkit-scrollbar-track {
    background: black;
}

body::-webkit-scrollbar-thumb {
    background: var(--color-red);
    border-radius: 10px;
}

button {
    background-color: var(--color-red);
    font-weight: bold;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
button:hover {
    transform: scale(1.1);
}

span {
    color: var(--color-red);
    font-weight: bold;
}

.black {
    color: black;
}

.white {
    color: white;
}

.red {
    color: var(--color-red);
}

.highlighted {
    background-color: white;
    border-radius: 5px;
}

section {
    width: 100%;
}

.title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}


.menu-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.light-text {
    font-size: 20px;
    font-weight: normal;
    padding-bottom: 5px;
}

.very-light-text {
    font-size: 17px;
    font-weight: lighter;
    padding-bottom: 20px;
}



.center {
    text-align: center;
}

.view-title {
    padding: 60px 0 40px 0;
}


