html {
            box-sizing: border-box;
            font-size: 16px;

            color: #131024;
            font-family: "Jost", sans-serif;
        }

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

        body,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        ol,
        ul {
            margin: 0;
            padding: 0;
            font-weight: normal;
        }

        ol,
        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: #131024;
        }

        html,
        body {
            height: 100%;
        }

        .main-container {
            display: flex;

            justify-content: center;
            align-items: center;
            flex-direction: column;

            height: 100%;
            overflow: hidden;
        }

        .content-container {
            display: flex;
            flex-direction: column;

            margin: 50px;
            max-width: 400px;
            width: 80%;
        }

        .links-container {
            width: 100%;
            height: 300px;


            background-color: lightgray;

            display: flex;
            flex-direction: column;

            padding: 10px;
        }

        .link,
        .header-link {
            border-bottom: 1px white solid;
            padding-bottom: 5px;
            padding-top: 3px;
        }

        .header-link {
            /* margin-bottom: 5px; */
        }

        .padding {
            padding-bottom: 5px;
            padding-top: 5px;
        }

        .spacer {
            flex: 1;
        }

        .footer {
            display: flex;
            justify-content: end;
            width: 100%;
        }

        .footer-bullet {
            margin-left: 10px;
            margin-right: 10px;
        }

        .header-link {
            display: flex;
            align-items: center;
        }

        .stripe {
            flex: 1;
            height: 0;
            margin-left: 10px;
            margin-right: 10px;
            border: 1px #131024 dashed;
        }

        .header-link img {
            width: 30px;
            object-fit: cover;
        }

        img#fin {
            pointer-events: all;
        }

        img#fin :hover {
            cursor: pointer;
        }

        ul {
            list-style-type: square;
        }

        ul li {
            margin-left: 20px;
        }