html, body {
    background: rgb(21, 21, 21);
    color: #eee;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    font-display: swap;
}

body {
    padding-bottom: 2em;
}

.nav-wrapper {
    background: #222;
    position: fixed;
    width: 100vw;
}

nav {
    height: 2.5em;
    margin: auto;
    padding: 1em;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
}

nav div {
    height: 80%;
    display: inline-block;
}

nav div.links {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.5em;
}

main {
    padding: 0;
    padding-top: 4.5em;
}

.button-link {
    border: 1px solid #eee;
    background: transparent;
    padding: 0.5em 1em;
    border-radius: 9999em;
    font-weight: 400;
    color: #eee;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s;
    display: inline-block;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
}

.button-link:hover {
    background-color: #eee;
    color: rgb(215, 0, 135);
}

#first-text {
    min-height: 60vh;
    display: flex;
    gap: 2em 3em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#first-text h1 {
    font-weight: 700;
}

#first-text h2 {
    font-weight: 300;
}

.first-text-block {
    max-width: 60ch;
}

.section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-wrapper {
    padding: 2em 1em;
}

#video-bg {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-grow: 1;
    background-color: black;
}

#second-text {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
}

#second-text > div {
    border: 2px solid #eee;
    border-radius: 1em;
    padding: 1em 1.5em;
    flex-grow: 1;
    width: 31ch;
    background: rgb(30,30,30);
    background: linear-gradient(130deg, rgba(30,30,30,1) 0%, rgba(59,10,65,1) 100%);
}

#second-text > div:hover {
    background: linear-gradient(130deg, rgba(30,30,30,1) 0%, rgba(97,28,106,1) 100%);
    color: white;
}

#second-text > div > p {
    text-align: left;
}

#second-text > div > h3 {
    font-weight: 300;
    white-space: nowrap;
}

#second-text > div > h3 > i {
    padding-right: 0.5ch;
}

#second-text > div a {
    color: #c7519c;
}

.sub-card {
    padding: 2em;
    border: 2px solid #aaa;
    border-radius: 1em;
    background: rgb(30,30,30);
    background: linear-gradient(180deg, rgba(30,30,30,1) 0%, rgba(30,6,30,1) 100%);
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction:column;
    align-content: flex-start;
    justify-content: flex-start;
    flex: 1 1 0;
}

.sub-card .card-title {
    font-size: 1.5em;
    font-weight: 700;
}

.sub-card .card-price {
    color: #c7519c;
}

.sub-card .card-price .price-period {
    color: #777;
}

.sub-card .card-description {
    margin: 1em 0;
    color: #ddd;
    flex-grow: 1;
    width: 100%;
    text-align: left;
}

.sub-card a {
    text-align: center;
}

.sub-options {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

section {
    margin-top: 1em;
}

#discord {
    border: 2px solid #444;
    border-radius: 1em;
    padding: 1em 0;
    background: rgb(35, 35, 35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}

#discord p {
    padding: 0 1em;
}

@media only screen and (max-width: 600px) {
    .sub-options {
        flex-direction: column;
    }
}