:root {
    --text-color-light: #FFF;
    --font-family-main: "Excon-Variable", serif;
}

/* Main Component */
#main {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

#main .center-elements {
    width: 100%;
    display: flex;
    justify-content: center;
}

#main p.heading2 {
    text-align: center;
}

/* Textblock Component */
#textblock {
    margin-top: 20vh;
    text-align: center;
    background: linear-gradient(90deg, rgba(7, 100, 151, 0.9) -17.06%, rgba(187, 7, 7, 0.95) 160.35%);
    backdrop-filter: blur(2px);
    width: 80vw;
    height: auto;
    border-radius: 15px;
}

#textblock #content {
    padding: 5%;
}

#textblock p,
#textblock h3,
#textblock ul,
#textblock ul li,
#textblock span {
    text-align: left;
    width: 100%;
    word-wrap: break-word;
}

#textblock .text p,
#textblock .text h3,
#textblock .text ul {
    width: auto;
    height: auto;
    flex-shrink: 0;
    color: var(--text-color-light);
    font-family: var(--font-family-main);
    font-style: normal;
    line-height: normal;
}

#textblock .text h3 {
    font-size: 1.5rem;
    font-weight: 300;
}

#textblock .text p {
    font-size: 1.25rem;
    font-weight: 400;
}

#textblock .text ul {
    font-size: 1.125rem;
    font-weight: 300;
}

#textblock .text p.active {
    display: block !important;
}

/* Headings */
.heading1 {
    height: auto;
    width: 20vw;
}