/************************************************ Variables */
:root {
    --primary: #FF006B;
    --secondary: #43b7ff;
    --text-color: #000000;
    --text-color-light: #ffffff;
    --header-font: Mulish, Arial, Helvetica, sans-serif;
}

/************************************************ Reset */

/* Basic CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    border: 0;
}

/************************************************ Helper Styles */

body {
    color: var(--text-color);
}

textarea:focus,
input:focus {
    outline: var(--primary);
    outline-style: auto;
    outline-offset: -2px;
}

a {
    color: inherit;
    text-decoration: underline;
}

a.no-decor {
    text-decoration: none;
}

.hidden,
.skip {
    display: none !important;
}

.padded {
    padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    font-family: var(--header-font)
}

a {}

ul {
    text-shadow: none !important;
}

.centered {
    align-items: center;
}

.centered-text {
    text-align: center;
}

.dark {
    color: var(--text-color-light)
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 1533px;
    width: 100%;
    margin: auto;
}

.row {
    display: flex;
    flex: 1;
    flex-direction: row;
}

.col {
    display: flex;
    flex: 1;
    flex-direction: column;
}

#main {
    display: flex;
    flex-direction: column;
    gap: 100px;
}