:root {
    --desktop-content-width: 1140px;

    --color-brand: #9C27B0;
    --color-black: #1C1C1C;
    --color-black-solid: #282828;
    --color-black-light: #333333;
    --color-gray-dark: #667085;
    --color-gray-light: #7F7F7F;
}

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

#wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

#wrapper > section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content {
    display: flex;
    max-width: var(--desktop-content-width);
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
    /* margin: 0 auto; */
}

.mdl-button {
    text-transform: none;
    border-radius: 8px;
    height: 50px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
}
.black-button {
    background-color: var(--color-black) !important;
}

.white-button {
    background-color: #fff !important;
    color: black !important;
}

h1, h2 {
    font-family: "Alexandria";
}

p, h4, h5 {
    font-family: "Inter", sans-serif;
}

h1, h2, h5 {
    line-height: 136%;
    font-weight: 400;
    letter-spacing: 0px;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

p {
    font-size: 16px;
}

h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    letter-spacing: 0.2px;
}

#separator {
    background: #E4E7F8;
    width: 100%;
    height: 1px;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
    align-items: center;
    padding: 55px 0;
    background: #1C1C1C;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

footer #footer-logo {
    width: 195px;
}

footer .elipse {
    z-index: 100;
    position: absolute;
    bottom: -400px;
    left: 0;
    opacity: 0.4;
}

@media (max-width: 768px) {
    #separator.desktop-separator {
        display: none;
    }
}