@import "https://fonts.googleapis.com/css?family=Sintony";
@import "https://rsms.me/inter/inter.css";

* {
    box-sizing: border-box;
}

body {
    background: #222;
    padding: 0;
    margin: 0;
    font-family: 'Sintony', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #000;
}

header {
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.section {
    text-align: center;
    position: absolute;
    width: 100%;
    letter-spacing: 4px;
    overflow: hidden;
    clip: rect(0, auto, auto, 0);
}

.section .fixed {
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
}

.section .white {
    color: #fff;
}

.section:nth-child(1) {
    height: 100vh;
    background-color: #fff;
    color: #000;
    top: 0;
    z-index: 1;
    background-image: url('assets/wood.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.section:nth-child(1) .fixed {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section:nth-child(2) {
    height: 100vh;
    box-shadow: inset 1000vh 1000vh 0 rgba(0, 0, 0, 0.40);
    /* background-color: #c2850a; */
    /* background-image: url('assets/dark.jpg'); */
    /* background-repeat: no-repeat;
    background-size: 70%;
    background-position-x: center; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: none;
    color: #fff;
    top: 100vh;
    z-index: 2;
}

.section:nth-child(2) .fixed {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section:nth-child(3) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: white;
    color: #000;
    top: 200vh;
    z-index: 3;
}

.section:nth-child(3) .fixed {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.oop {
    position: relative;
    z-index: auto;
    height: 10px;
    background: linear-gradient(141deg, #48ded4 0%, #a026bf 51%, #e82c75 75%);
}

.cursor::before {
    content: "|";
    /* font-weight: bolder; */
    color: transparent;
    background-color: orange;
    animation: blink-caret 0.8s ease infinite;
    -moz-animation: blink-caret 0.8s ease infinite;
    -o-animation: blink-caret 0.8s ease infinite;
    -webkit-animation: blink-caret 0.8s ease infinite;
}

.st-font-2 {
    font-family: Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    letter-spacing: normal;
}

.st-img-wood {
    background-image: url('assets/wood.png');
}