:root {
    /* --gradient-primary: #212121;
    --gradient-secondary: #000; */
}

* {
    box-sizing: border-box;
}

html,
body {
    --gradient-primary: #212121;
    --gradient-secondary: #000;
    width: 100vw;
	overflow-x: hidden;
    margin: 0;
    background: linear-gradient(113deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    color: #fff;
}

h2, .h2 {
    margin-top: 0;
    font-family: "Encode Sans";
    font-size: 64px;
    font-weight: 700;
    line-height: 1.4;
}

h3, .h3 {
    margin-top: 0;
    font-family: "Encode Sans";
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

a {
    color: #fff;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

ul li {
    font-family: "Outfit";
    font-size: 48px;
    font-weight: 400;
    line-height: 1.4;
}

.text-center {
    text-align: center;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

section {
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/*
 * Slide 1
 */
.slide-1 .intro {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 48px;

    max-width: 320px;
}


/*
 * Slide 2
 */
.slide-2 span {
    display: block;
    max-width: 1280px;
    text-align: center;
}

/*
 * Slide 3
 */
.slide-3 {
    overflow: hidden;
}

.slide-3 .horizontal-slider {
    display: flex;
    flex-wrap: nowrap;
}

.slide-3 .horizontal-slide {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 100vw;
    min-height: 100vh;
}

.tween-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tween {
    min-height: 240px;
    padding: 32px;
    border-radius: 24px;
    background: #1B1B1B;
}

/*
 * Slide 5
 */
.slide-5 {
    padding-left: 16px;
    padding-right: 16px;

    transform: translateY(-50%);
}

.timeline-examples {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;

    width: 100%;
    max-width: 1240px;
    min-height: 80vh;
    margin-left: auto;
    margin-right: auto;
    padding: 64px;
    border-radius: 24px;
    background: #1B1B1B;
}

/*
 * Slide 6
 */
.slide-6 h2 {
    color: #ffda94;
}