:root {
    --color-primary: #000850;
    --color-secondary: #E0298D;
    --color-gray: #6B7280;
    --serif: 'Montserrat', serif;
}

html {
    box-sizing: border-box;
}


*,
*:before,
*:after {
    box-sizing: inherit;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Montserrat-VariableFont_wght.ttf');
}

body {
    margin: 0;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.5;
    background: #f9f9f9;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

header {
    height: 68px;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    padding: 0px 10px 0px 50px;
}

main {
    flex: 1;
}


footer {
    display: flex;
    justify-content: center;
    padding: 1rem 0;


    p {
        margin: 0;
        font-size: 13px;
        line-height: 1.5;
        margin-right: 0.5rem;
    }
}

.logo {
    width: 120px;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 40px;
}

.logo img {
    width: 120px;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
