:root {
    --color-black: #000;
    --color-white: #FFF;
    --color-link: rgb(0, 150, 220);
    --color-link-hover: rgb(0, 20, 120);
    --font-primary: "Excon-Variable", serif;
    --font-secondary: Inter;
    --transition-timing: 0.3s ease;
}

/* Global Styles */
::-webkit-scrollbar {
    display: none;
}

html,
body {
    scrollbar-width: none;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100vw;
}

body {
    -ms-overflow-style: none;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    padding: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
}

p {
    margin: 0;
    padding: 0;
}

a,
button,
input[type="checkbox"] {
    cursor: pointer;
}

a {
    text-decoration: none;
    margin-right: 10px;
    color: var(--color-link);
    transition: color var(--transition-timing), transform var(--transition-timing);
}

a:hover {
    color: var(--color-link-hover);
}

button {
    transition: all var(--transition-timing);
}

@media (-webkit-full-screen) {
    html {
        background: var(--color-black);
    }
}

@supports (-webkit-touch-callout: none) {
    body {
        background-attachment: scroll;
    }
}

/* Element Placement */
.left-elements {
    text-align: left;
    margin-left: 5vw;
}

.right-elements {
    text-align: right;
}

.center-elements {
    align-items: center;
}

/* Typography */
.title,
.subtitle,
.heading1,
.heading2,
.heading3,
.text1,
.text2,
.text3,
.text4 {
    width: auto;
    height: auto;
    color: var(--color-white);
    font-style: normal;
    line-height: normal;
}

.title,
.subtitle,
.heading1,
.heading2,
.text1,
.text2,
.text3,
.text4 {
    flex-shrink: 0;
}

.title,
.subtitle,
.heading1,
.heading2,
.heading3,
.text1,
.text3,
.text4 {
    font-family: var(--font-primary);
}

.heading1,
.heading2,
.text1,
.text3 {
    text-align: center;
}

.title {
    margin-top: 20vh;
    min-width: 30vw;
    max-width: 40vw;
    font-size: 5rem;
    font-weight: 700;
    text-shadow:
        -5px 4px 0px var(--color-black),
        1px 1px 0px var(--color-black),
        -1px -1px 0px var(--color-black),
        1px -1px 0px var(--color-black),
        -1px 1px 0px var(--color-black);
}

.subtitle {
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow:
        1px 1px rgba(0, 0, 0, 0.5),
        -1px 1px rgba(0, 0, 0, 0.5),
        -1px -1px rgba(0, 0, 0, 0.5),
        1px -1px rgba(0, 0, 0, 0.5),
        -2px 2px 10px rgba(0, 0, 0, 1);
}

.heading1 {
    font-size: 3rem;
    font-weight: 700;
}

.heading2 {
    font-size: 1.5rem;
    font-weight: 300;
}

.heading3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.text1 {
    font-size: 1.25rem;
    font-weight: 400;
}

.text2 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
}

.text3 {
    font-size: 1.25rem;
    font-weight: 300;
}

.text4 {
    font-size: 1.125rem;
    font-weight: 300;
}