﻿@font-face {
    font-family: 'Uni Neue';
    src: url('/fonts/UniNeueBold.woff2') format('woff2'), url('/fonts/UniNeueBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uni Neue';
    src: url('/fonts/UniNeueRegular.woff2') format('woff2'), url('/fonts/UniNeueRegular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #F9F9F9;
    font-family: 'Uni Neue', Arial, Helvetica, sans-serif;
}

.header {
    background-color: #FFE400;
    height: 80px;
    background: url('images/bg-header-mobile.png') no-repeat right #FFE400;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px;
}

    .header .logo {
        height: 40px;
    }

.container {
    background-color: #fff;
}

.section {
    padding: 20px;
}

.h1 {
    color: #503F93;
}

p {
    font-size: 14px;
}

.space {
    height: 10px;
}

.update {
    color: gray;
    font-style: italic;
}

.btn-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #503F93;
    gap: 5px;
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.lower-roman {
    list-style-type: lower-roman;
}

.lower-alpha {
    list-style-type: lower-alpha;
}

@media (min-width:640px) {
    .container {
        width: 580px;
        margin: 0 auto;
    }
}

@media (min-width:800px) {
    .container {
        width: 720px;
        margin: 0 auto;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1120px;
        margin: 0 auto;
    }

    .header {
        background-color: #FFE400;
        height: 130px;
        background: url('images/bg-header-desktop.png') no-repeat right #FFE400;
        padding: 40px;
    }

        .header .logo {
            height: 54px;
        }

    p {
        font-size: 16px;
    }

    .section {
        padding: 40px;
    }
}
