html {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d5d5d5;
}
body {
    margin: 0;
    padding: 0;
    min-height: 1024px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Geneva, Verdana, sans-serif;
    font-weight: 200;
}
h1 {
    text-align: center;
}
h1 a, h2 a {
    text-align: left;
}
div#header {
    width: 100%;
    background-color: #fff;
    /* backdrop-filter: blur(10px); */
}
div#content {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 100px;
}
div#footer {
    background-color: #d5d5d5;
}
div.logo {
    transition: 0.2s; /* Add a transition effect (when scrolling - and font size is decreased) */
    padding-top: 100px;
    z-index: 101;
    background-image: url(/images/icon.svg);
    background-repeat: none;
    background-size: 150%;
    background-position: 50% -70px;
    width: 200px;
    height: 200px;
    margin-left: 0;
    position: fixed;
    top: -50px;
    padding-top: 0;
    margin-top: 50px;
}

#menu {
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.4s;
    height: 100px;
    margin-bottom: 3em;
    /* this is based on the background-color: rgba(106, 56, 180) (#6a38b4), but accounts for transparency */
    background-color: rgba(80, 42, 135, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}
#menu ul {
    margin: 40px;
    float: right;
}
#menu ul li {
    float: left;
    display: block;
    padding: 0 0.5em;
    border-left: 1px dotted #fff;
}
#menu ul li:first-child {
    border-left: 0;
}
#menu a {
    color: #fff;
}
#menu.background {
    z-index: 102;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
#menu.background a {
    color: #333;
}

.regulatory {
    position: absolute;
    width: 100%;
}
.regulatory ul {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
}
.regulatory ul li {
    float: left;
    display: block;
    padding: 0 0.5em;
    border-left: 1px dotted black;

}
.regulatory ul li:first-child {
    border-left: 0;
}

.hero {
    border-radius: 15px;
    transition: 0.2s;
    width: 450px;
    padding: 0.5em;
    margin: auto;
}
.hero:hover {
    background-color: #d5d5d5;
}

#footer .social img {
    height: 1em;
    width: 1em;
    vertical-align: text-bottom;
    margin-right: 0.3ex;
}
