@font-face {
    font-family:"GintoNord-Ultra";
    src: url("../fonts/GintoNord-Ultra.woff2") format("woff2"),
    url("../fonts/GintoNord-Ultra.woff") format("woff");
    font-style:normal;
    font-weight:400;
}  

@font-face {
    font-family:"GintoNord-Black";
    src: url("../fonts/GintoNordTrial-Black.woff") format("woff");
    font-style:normal;
    font-weight:400;
}

*,
*:after, 
*:before {
	margin: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

*::selection {
  background: transparent;
  color: #888882;
}

body {
	background-color: #000;
	color: #fff;
    overflow-x: hidden;
}

a {
	color: #fff;
    text-decoration: none;
}

h1 {
    font-family: "GintoNord-Ultra", "Arial Black", "Arial Bold", sans-serif;
    font-size: 20vw;
    line-height: 0.78;
    text-align: center;
}

p {
    font-family: "GintoNord-Black", "Arial Black", "Arial Bold", sans-serif;
    font-size: 4.7vw;
    line-height: 1.1;
}

.intro {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text {
	padding: 20% 8% 20% 4%;
}

.show-mobile {
    display: none;
}

.hide-mobile {
    display: inline-block;
}

/* BALLOON ANIMATION */

@keyframes balloons {
  0%,100%{ transform:translateY(0) rotate(-4deg); }
  50%{ transform:translateY(-25px) rotate(4deg); }
}

@keyframes balloon {
  0%,100%{ transform:translateY(0) rotate(-4deg); }
  50%{ transform:translateY(-25px) rotate(4deg); }
}

.balloon {
    animation: balloon 1s ease-in-out infinite;
}

span {
    position: relative;
    display: inline-block;
}


/* ThreeJS CSS */

#threejs_wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 110%;
    pointer-events: none;
    animation:balloons 6s ease-in-out infinite;
}

.no-select {
    user-select: none;
}

.cursor-grab {
    cursor: grab;
}


/* MOBILE */

@media only screen and (max-width : 800px) {

    h1 {
        font-size: 22.5vw;
        padding-bottom: 15%;
    }

    p {
        font-size: 8.4vw;
        line-height: 1.2;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .show-mobile {
        display: inline-block;
    }

    .hide-mobile {
        display: none;
    }

    .text {
        padding: 5% 2% 20%;
    }
}




