body,
figure,
figcaption,
img,
h1,
h2,
h3,
main,
div,
p,
form,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-weight: 700;
    color: var(--colorDark);
}

a:hover {
    color: var(--colorBlack);
}

textarea {
    height: 90px;
    border-radius: 5px;
    border: solid 1px transparent;
}

textarea:focus {
    height: 90px;
    border-radius: 5px;
    border: solid 1px var(--colorMain);
}

input,
button,
select {
    height: 45px;
    border-radius: 5px;
    border: solid 1px transparent;
}

input:focus,
button:focus,
select:focus {
    height: 45px;
    border-radius: 5px;
    border: solid 1px var(--colorMain);
}

button {
    background-color: var(--colorMain);
    color: var(--colorWhite);
}

button:hover {
    background-color: var(--mainBrand);
    color: var(--colorWhite);
}

button:active {
    background-color: var(--mainBrand);
    color: var(--colorWhite);
}

button:disabled {
    background-color: #8b0000;
}

form {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    gap: 15px;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

.material-symbols-outlined {
    text-align: center;
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

:root {
    --mainBrand: #092548;
    --colorMain: #161616;
    --colorLight: #353535;
    --colorLighter: #57574e;
    --colorWhite: #bcb5aa;
    --plainWhite: #FFFFFF;
    --colorDark: #404040;
    --colorDarker: #282828;
    --colorBlack: #010101;
    --colorAlert: #d20000;
    --colorSuccess: #00cc1b;
}

body {
    background-color: var(--colorLighter);
    color: var(--colorBlack);
    background: var(--colorLighter) url('../img/body_background.png') repeat scroll top left;
    font-family: -apple-system, BlinkMacSystemFont, 'Nunito', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    font-size: 12px;
    font-weight: 400;
}