@font-face {
    font-family: 'Yeezy';
    src: url('../fonts/yeezy-tstar.ttf')
}
@font-face {
    font-family: 'VCR OSD Mono';
    src: url('../fonts/vcr-osd-mono.ttf')
}

/**
 * Base Styles
 */

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

html {
    background: #c3c3c3;
}

:root {
    font-size: 62.5%;
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
}

.section {
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
    font-family: 'Yeezy', sans-serif;
    color: black;
    text-transform: uppercase;
    font-size: 7vmin;
    padding-left: 10%;
    padding-right: 10%;
}

.section:nth-child(even) {
    justify-content: flex-end;
}

h1 {
    font-size: 6rem;
    font-family: 'Yeezy', 'Helvetica', sans-serif;
    /* font-weight: bold; */
    letter-spacing: 10px;
    text-align: center;
    margin: 10px;

    position: relative;
    z-index: 100;
}
h2 {
    font-family: 'Yeezy', 'Helvetica', sans-serif;
    /* font-weight: bold; */
    text-align: center;
    font-size: 4rem;

    position: relative;
    z-index: 100;
}
span {
    font-size: 2rem;
    font-family: "VCR OSD Mono", monospace;
}


button {
    height: 50px;
    width: 100%;
    background: white;
    border-radius: 5px;
    border: 1px solid black;

    font-family: "VCR OSD Mono", monospace;
    font-size: 2rem;

    position: relative;
    z-index: 100;
}

/**
 * Text
 */

#abt {
    position: relative;
    z-index: 100;

}

p {
    font-size: 2rem;
    font-family: "VCR OSD Mono", monospace;
    text-align: center;
}

/**
 * Images
 */
img {

    width: 50px;
    height: auto;

    border-radius: 5px;
    border: 1px solid black;

    position: relative;
    z-index: 100;

    margin: 25px 0;
}

.inner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

/**
 * Animations
 */

/* .flip-text { */
/*     position: relative; */
/*     z-index: 100; */
/* } */
/* .flip-text span { */
/*     display: flex; */
/*     animation: flip 2s infinite; */
/*     animation-delay: calc(.2s * var(--1)); */
/*     color: black; */

/*     position: relative; */
/*     z-index: 100; */
/* } */
/* @keyframes flip { */
/*     0%, 80% { */
/*         transform: rotateY(360deg) */
/*     } */
/* } */
