html * {
    box-sizing: border-box;
}

body, button, input, label, img, menu, a, a:focus, a:active, a:visited {
    all: unset;
    text-decoration: none;
    color: inherit;
}

p a {
    color: #0b27b5 !important;
    cursor: pointer;
}

p a:hover {
    text-decoration: underline;
}

button:focus, button:active, button:focus *, button:active * {
    outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

@font-face {
    font-family: "Ubuntu";
    src: url(/website/fonts/Ubuntu-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Pacifico";
    src: url(/website/fonts/Pacifico-Regular.ttf) format("truetype");
}

:root {
    --color_bg_top_bar: #2c3645;
    --color_tx_top_bar: #ddd;
    --color_bg_body: #e2e7f7;
    --color_tx_body: #13171e;
}

html {
    font-family: Ubuntu;
    background: var(--color_bg_body);
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color_tx_body);
}

top_area, footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .8rem .5rem 1.3rem .5rem;
    width: 100%;
    background: var(--color_bg_top_bar);
    color: var(--color_tx_top_bar);
}

logo_large {
    font-family: Pacifico;
    font-size: 2.5rem;
    cursor: pointer;
    border-radius: 8px;
    padding: 0 1rem;
}

logo_large:hover {
    background: #0f1a2f;
    color: white;
}

menu {
    display: flex;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
}

menu_item {
    display: block;
    margin: 0 0.5rem;
    padding: .4rem;
    cursor: pointer;
    border-radius: 4px;
}

menu_item:hover {
    background: #0f1a2f;
    color: white;
}

main_area {
    max-width: 600px;
    padding: 0 1rem;
    text-align: justify;
}

section_title {
    display: block;
    font-family: Pacifico;
    font-size: 2rem;
}

section_body {
    display: block;
    line-height: 2rem;
    margin-bottom: 1rem;
}
