:root {
    --bg-main: #101010;
    --bg-secondary: #f23868;
    --grey-dark: #191919;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    font-family: "Quicksand", sans-serif;
    background-color: var(--bg-main);
    color: white;
    width: auto;
    justify-content: flex-start;
}

.navbar-lv {
    display: flex;
    flex: 0.04;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}

.links {
    justify-content: space-evenly;
    display: flex;
    flex: 1;
    align-items: center;
}

.links a {
    font-size: 1.3em;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.links > a, .links > li {
    animation: fadeInFromAbove 1s;
}

#navMenu {
    display: none;
    height: 2.5em;
    width: 2.5em;
}

.links a,
#navMenu {
    cursor: pointer;
}

.frontSection {
    display: flex;
    flex: 0.2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.frontSection > h1 {
    font-size: 7em;
    animation: fadeInFromAbove 1.5s;
}

.frontSection > h1 > span {
    color: var(--bg-secondary);
}

.frontSection > p {
    font-size: 1.5em;
    text-align: center;
    margin-top: 1.5em;
    animation: fadeInFromAbove 2.5s;
}

.frontSection > p > span {
    color: var(--bg-secondary);
    font-weight: 600;
}

.about-us > h2 {
    margin-bottom: 2.5em;
    margin-top: 2.5em;
    font-size: 2em;
}

.about-us > h3 {
    font-size: 1.5em;
}

.about-us > a {
    font-size: 1.2em;
    text-decoration: none;
    color: var(--bg-secondary);
    font-weight: 600;
}

.about-us-textbox {
    display: flex;
    justify-content: center;
    width: 100%;
}

.aboutustext {
    padding: 1em;
    border-radius: 0.4em;
    width: 100%;
    line-height: 2em;
}

.aboutustext > p,
#read-tos {
    font-size: 1.2em;
}

#read-tos {
    margin-top: 4em;
}

.plans {
    display: flex;
    flex: 0.45;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.plans > h2 {
    transform: translateY(-8em);
    transition: 0.8s;
    font-size: 2em;
    animation: fadeIn 2s;
}

.cards {
    display: flex;
    gap: 8em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.card {
    background-color: var(--grey-dark);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    width: 30em;
    line-height: 2em;
    padding: 3em 1em;
    border-radius: 1.5em;
    transition: 1.3s;
    align-self: flex-start;
}

.card > h3 {
    font-size: 1.6em;
}

.card > ul {
    margin-top: 1em;
    margin-bottom: 1em;
}

.card > ul > li {
    font-size: 1.1em;
    padding: 4px 0;
}

.tosTag {
    color: var(--bg-secondary);
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
}

.purchase {
    background-color: #f23868;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    padding: 0.3em 1.2em;
    border-radius: 2em;
    text-decoration: none;
}

.purchase:nth-of-type(2) {
    margin-top: 1em;
}

.socials {
    display: flex;
    flex: 0.25;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 3em;
}

.socials > h2 {
    margin-top: 1.5em;
    font-size: 2em;
}

.social-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 5em;
}

.sCard {
    background-color: var(--grey-dark);
    border-radius: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 40em;
    height: 10em;
    transition: 1.3s;
}

.sCard:nth-of-type(1) {
    transform: translateX(-13em);
}

.sCard:nth-of-type(2) {
    transform: translateX(13em);
}

.sCard > h3 {
    font-size: 1.3em;
}

.sCard > a {
    background-color: #f23868;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 2em;
    padding: 0.5em 1.4em;
    text-decoration: none;
}

.sLogo > img {
    width: 3em;
}

.supportEmail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 15em;
    gap: 2em;
    padding: 2em;
}

.supportEmail > h4 {
    font-size: 1.3em;
}

.supportEmail > p {
    font-size: 1.1em;
    font-weight: bold;
    color: #f23868;
}

.supportEmail > a {
    color: white;
    background-color: #f23868;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 2em;
    padding: 0.5em 1.43em;
    text-decoration: none;
}