.palette-one {
    --primary: #7801aa;
    --secondary: #ff1cd2;
    --tertiary: #d16aff;
    --text: #f0f0f0;
    --background: #000000;
    --background-rgba-75: rgba(0, 0, 0, 0.5);
}

body {
    color: var(--text);
    font-family: "Helvetica", Helvetica, Arial, sans-serif;
    line-height: 1.2;
    background-color: var(--background);
}

/* Fonts */
@font-face {
    font-family: 'opensans-regular';
    src: url('fonts/opensans/OpenSans-Regular-webfont.eot');
    src: url('fonts/opensans/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('fonts/opensans/OpenSans-Regular-webfont.woff') format('woff'),
    url('fonts/opensans/OpenSans-Regular-webfont.ttf') format('truetype'),
    url('fonts/opensans/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans-bold';
    src: url('fonts/opensans/OpenSans-Bold-webfont.eot');
    src: url('fonts/opensans/OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
    url('fonts/opensans/OpenSans-Bold-webfont.woff') format('woff'),
    url('fonts/opensans/OpenSans-Bold-webfont.ttf') format('truetype'),
    url('fonts/opensans/OpenSans-Bold-webfont.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cutive-mono';
    src: url('fonts/cutive-mono/CutiveMono-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

/* Animations */
@keyframes spin {
    100% {
        transform: rotate(1turn) translate(var(--r));
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes hero-star-x {
    100% {
        transform: translatex(100vw);
    }
}

@keyframes hero-star-y {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(var(--r));
    }
}

@keyframes twinkle {
    0% {
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(0.3);
    }
}

@keyframes floaty-x {
    50% {
        transform: translate(-50%, calc(-50% - 1rem));
    }
}

@keyframes floaty-y {
    50% {
        transform: translate(calc(-50% - 1rem), -50%);
    }
}

@keyframes floaty-rotate {
    50% {
        rotate: -1.5deg;
    }
}

/* Text */

.big-header {
    margin: 0;
    padding: 0;
    font-size: 5em;
}

.big-header ~ h2{
    margin: 0;
    padding: 0;
}

.sub-header {
    max-width: 80%;
    margin: auto;
    text-align: center;
    font-size: 3em;
    font-family: "opensans-bold", sans-serif;
}

.header {
    width: 100%;
    font-size: 3em;
    font-family: "opensans-bold", sans-serif;
    text-align: center;
    color: var(--primary);
}

.section-link {

}

.internal-link {

}

.external-link {
    margin: 0;
    padding: 0;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--primary);
    transition: 0.5s ease-out;
}

.external-link:hover {
    text-decoration-thickness: 6px;
    text-decoration-color: var(--tertiary);
}

.external-link i {
    font-size: 0.6em;
    display: inline;
    margin: 0 -0.4em 0 -0.3em;
    padding: 0;
    transition: 0.5s ease-out;
    color: var(--primary);
}

.external-link:hover i {
    color: var(--tertiary);
}

.email-link {
    font-size: 1.5em;
}

.external-link:hover .tooltip {
    display: block;
}

.tooltip {
    display: none;
    position: absolute;
    padding: 6px;
    font-size: 1rem;
    border-radius: 3px;
    white-space: nowrap;
    background-color: var(--background-rgba-75);
    color: var(--text);
}

h3, h4, p {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 800px) {
    h3, h4, p {
        margin: 0;
        padding: 0;
        display: inline-block;
        font-size: 2.3rem;
        font-weight: 700;
    }
}

b {
    color: var(--tertiary);
}

u, a {
    text-decoration-thickness: 3px;
    text-decoration-color: var(--primary);
    transition: 0.5s ease-out;
}

u:hover, a:hover {
    text-decoration-thickness: 6px;
    text-decoration-color: var(--tertiary);
}

a {
    color: inherit
}

mark {
    color: var(--text);
    background-color: var(--primary);
    padding-top: 3px;
    padding-left: 3px;
    padding-right: 3px;
}

i {
    font-size: 0.8em;
    padding: 1px;
    transform: translate(3px, -1px);
}

.primary {
    color: var(--primary);
}

.secondary {
    color: var(--secondary);
}

.tertiary {
    color: var(--tertiary);
}

.text-gradient-0 {
    background: linear-gradient(-120deg, var(--primary), var(--secondary));
    background: -webkit-linear-gradient(-120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-1 {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    background: -webkit-linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
    background: linear-gradient(120deg, var(--secondary), var(--primary));
    background: -webkit-linear-gradient(120deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-3 {
    background: linear-gradient(120deg, var(--secondary), var(--tertiary));
    background: -webkit-linear-gradient(120deg, var(--secondary), var(--tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-4 {
    background: linear-gradient(120deg, var(--tertiary), var(--secondary));
    background: -webkit-linear-gradient(120deg, var(--tertiary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-5 {
    background: linear-gradient(120deg, var(--tertiary), var(--primary));
    background: -webkit-linear-gradient(120deg, var(--tertiary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-6 {
    background: linear-gradient(120deg, var(--primary), var(--tertiary));
    background: -webkit-linear-gradient(120deg, var(--primary), var(--tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero */
.hero {
    position: fixed;
    height: 100vh;
    width: 100%;
    overflow: clip;
    background: linear-gradient(var(--background), 70%, var(--primary));
    font-family: "opensans-bold", sans-serif;
    z-index: -1;
    transition: 0.2s ease-out;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    color: white;
}

.star {
    display: block;
    color: var(--text);
    background-color: var(--text);
    height: var(--s);
    width: var(--s);
    border-radius: 1rem;
}

.hero-star {
    animation: hero-star-y ease-out infinite, hero-star-x linear infinite;
    animation-delay: var(--d,0s);
    animation-duration: var(--p);
    transition: 0s;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    font-size: 0.75em;
    font-family: "opensans-bold", sans-serif;
    overflow: clip;
}

@media (min-width: 800px) {
    .hero-text {
        font-size: 2em;
    }
}

.hero-drift {
    display: inline-block;
}

.hero span {
    display: inline-block;
}

.hero-hills {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 30vh;
}

.hero-hills svg {
    position: absolute;
    bottom: 0;
    height: 100%;
    left: 50%;
    transform: translatex(-50%);
}

.hill-two {
    opacity: 0.60;
}

.hill-three {
    opacity: 0.65;
}

/* Sections */
section {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    text-align: left;
}

.section-content {
    height: auto;
    margin: 0 2rem;
}

@media (min-width: 800px) {
    .section-content {
        max-width: 70rem;
    }
}

/* Footer */
footer {
    margin: auto;
    text-align: center;
}