@import"https://fonts.googleapis.com/css?family=Raleway:400,700,800,800i&display=swap";
@import"https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900&display=swap";

.animated--moveInLeft {
	animation-name: moveInLeft 1s
}

.animated--moveInRight {
	animation-name: moveInRight 1s
}

.animated--shake {
	animation: shake .5s
}

.animated--KeyFadeIn {
	animation: KeyFadeIn .5s
}

.animated--moveInBottom {
	animation: moveInBottom 1s ease-in
}

.animated--upAndDown {
	animation: upAndDown 1s ease-out infinite
}

.animated--tada {
	animation: tada 1s ease-out
}

@keyframes upAndDown {

	0%,
	100% {
		top: -75px
	}

	50% {
		top: -55px
	}
}

@keyframes shake {
	0% {
		transform: translate3d(1px, 1px, 0) rotate(0deg)
	}

	10% {
		transform: translate3d(-1px, -2px, 0) rotate(-1deg)
	}

	20% {
		transform: translate3d(-3px, 0px, 0) rotate(1deg)
	}

	30% {
		transform: translate3d(3px, 2px, 0) rotate(0deg)
	}

	40% {
		transform: translate3d(1px, -1px, 0) rotate(1deg)
	}

	50% {
		transform: translate3d(-1px, 2px, 0) rotate(-1deg)
	}

	60% {
		transform: translate3d(-3px, 1px, 0) rotate(0deg)
	}

	70% {
		transform: translate3d(3px, 1px, 0) rotate(-1deg)
	}

	80% {
		transform: translate3d(-1px, -1px, 0) rotate(1deg)
	}

	90% {
		transform: translate3d(1px, 2px, 0) rotate(0deg)
	}

	100% {
		transform: translate3d(1px, -2px, 0) rotate(-1deg)
	}
}

@keyframes moveInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-10rem, 0, 0)
	}

	80% {
		transform: translate3d(1rem, 0, 0)
	}

	100% {
		opacity: 1;
		transform: translate(0)
	}
}

@keyframes moveInRight {
	0% {
		opacity: 0;
		transform: translate3d(10rem, 0, 0)
	}

	80% {
		transform: translate3d(-1rem, 0, 0)
	}

	100% {
		opacity: 1;
		transform: translate(0)
	}
}

@keyframes moveInBottom {
	0% {
		opacity: 0;
		transform: translate3d(0, 3rem, 0)
	}

	100% {
		opacity: 1;
		transform: translate(0)
	}
}

@keyframes glitch1 {
	0% {
		transform: none;
		opacity: 1
	}

	7% {
		transform: skew(-0.5deg, -0.9deg);
		opacity: .75
	}

	10% {
		transform: none;
		opacity: 1
	}

	27% {
		transform: none;
		opacity: 1
	}

	30% {
		transform: skew(0.8deg, -0.1deg);
		opacity: .75
	}

	35% {
		transform: none;
		opacity: 1
	}

	52% {
		transform: none;
		opacity: 1
	}

	55% {
		transform: skew(-1deg, 0.2deg);
		opacity: .75
	}

	50% {
		transform: none;
		opacity: 1
	}

	72% {
		transform: none;
		opacity: 1
	}

	75% {
		transform: skew(0.4deg, 1deg);
		opacity: .75
	}

	80% {
		transform: none;
		opacity: 1
	}

	100% {
		transform: none;
		opacity: 1
	}
}

@keyframes glitch2 {
	0% {
		transform: none;
		opacity: .25
	}

	7% {
		transform: translate3d(-2px, -3px, 0);
		opacity: .5
	}

	10% {
		transform: none;
		opacity: .25
	}

	27% {
		transform: none;
		opacity: .25
	}

	30% {
		transform: translate3d(-5px, -2px, 0);
		opacity: .5
	}

	35% {
		transform: none;
		opacity: .25
	}

	52% {
		transform: none;
		opacity: .25
	}

	55% {
		transform: translate3d(-5px, -1px, 0);
		opacity: .5
	}

	50% {
		transform: none;
		opacity: .25
	}

	72% {
		transform: none;
		opacity: .25
	}

	75% {
		transform: translate3d(-2px, -6px, 0);
		opacity: .5
	}

	80% {
		transform: none;
		opacity: .25
	}

	100% {
		transform: none;
		opacity: .25
	}
}

@keyframes glitch3 {
	0% {
		transform: none;
		opacity: .25
	}

	7% {
		transform: translate3d(2px, 3px, 0);
		opacity: .5
	}

	10% {
		transform: none;
		opacity: .25
	}

	27% {
		transform: none;
		opacity: .25
	}

	30% {
		transform: translate3d(5px, 2px, 0);
		opacity: .5
	}

	35% {
		transform: none;
		opacity: .25
	}

	52% {
		transform: none;
		opacity: .25
	}

	55% {
		transform: translate3d(5px, 1px, 0);
		opacity: .5
	}

	50% {
		transform: none;
		opacity: .25
	}

	72% {
		transform: none;
		opacity: .25
	}

	75% {
		transform: translate3d(2px, 6px, 0);
		opacity: .5
	}

	80% {
		transform: none;
		opacity: .25
	}

	100% {
		transform: none;
		opacity: .25
	}
}

@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: inherit
}

ul {
	margin: 0;
	padding: 0;
	list-style: none
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth
}

@media only screen and (max-width: 75em) {
	html {
		font-size: 56.25%
	}
}

@media only screen and (max-width: 56.25em) {
	html {
		font-size: 50%
	}
}

@media only screen and (min-width: 112.5em) {
	html {
		font-size: 75%
	}
}

body {
	box-sizing: border-box;
	padding: 3rem;
	background: #a7d1e2
}

@media only screen and (max-width: 56.25em) {
	body {
		padding: 0
	}
}

::selection {
	background-color: #a7d1e2;
	color: #fff
}

body {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: #777
}

.heading-primary {
	font-family: "Raleway", sans-serif;
	color: #fff;
	text-transform: uppercase;
	backface-visibility: hidden;
	margin-bottom: 6rem
}

.heading-secondary,
.heading-secondary2,
.heading-tertiary,
.heading-quarterary {
	font-family: "Raleway", sans-serif;
	color: #fff;
	font-style: italic;
	text-shadow: .5rem 1rem 2rem rgba(0, 0, 0, .2)
}

.heading-secondary {
	font-size: 8rem;
	margin-bottom: 2rem;
	margin-left: 2rem
}
.heading-secondary2 {
	font-size: 4rem;
	margin-bottom: 2rem;
	margin-left: 2rem
}

@media only screen and (max-width: 37.5em) {
	.heading-secondary {
		padding-top: 2rem;
		font-size: 4rem;
		text-align: center
	}
	.heading-secondary2 {
		padding-top: 2rem;
		font-size: 2rem;
		text-align: center
	}
}

.heading-tertiary {
	color: #a7d1e2;
	font-size: 4rem;
	margin-bottom: 2rem;
	margin-left: 2rem
}

@media only screen and (max-width: 37.5em) {
	.heading-tertiary {
		font-size: 3rem;
		margin-left: 0;
		text-align: center
	}
}

.heading-tertiary2 {
	color: #db6ba5;
	font-size: 4rem;
	margin-bottom: 2rem;
	margin-left: 2rem
}

@media only screen and (max-width: 37.5em) {
	.heading-tertiary2 {
		font-size: 3rem;
		margin-left: 0;
		text-align: center
	}
}

.heading-quarterary {
	color: #a7d1e2;
	font-size: 2rem;
	margin-bottom: 2rem;
	margin-left: 2rem
}

@media only screen and (max-width: 37.5em) {
	.heading-quarterary {
		font-size: 2rem;
		margin-left: 0;
		text-align: center
	}
}

.explication .paragraph{
	margin: 2rem;
}
.paragraph {
	font-size: 2rem;
	color: #fff;
	margin: 0 2rem
}

.paragraph__black {
	font-size: 2rem;
	color: #000;
	margin: 0 2rem
}

.paragraph__black:not(:last-child) {
	margin-bottom: 3rem
}

blockquote{
	font-size: 2rem;
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-style: italic;
}

.text-black {
	color: #000 !important
}

.text-pink {
	color: #ff00a9 !important
}

.text-primary {
	color: #a7d1e2 !important
}

.u-center-text {
	text-align: center !important
}

.u-margin-null {
	margin: 0
}

.u-margin-bottom-small {
	margin-bottom: 1.5rem !important
}

.u-margin-bottom-medium {
	margin-bottom: 4rem !important
}

@media only screen and (max-width: 56.25em) {
	.u-margin-bottom-medium {
		margin-bottom: 3rem !important
	}
}

.u-margin-bottom-big {
	margin-bottom: 8rem !important
}

@media only screen and (max-width: 56.25em) {
	.u-margin-bottom-big {
		margin-bottom: 5rem !important
	}
}

.u-margin-top-small {
	margin-top: 1.5rem !important
}

.u-margin-top-medium {
	margin-top: 4rem !important
}

@media only screen and (max-width: 56.25em) {
	.u-margin-top-medium {
		margin-top: 3rem !important
	}
}

.u-margin-top-big {
	margin-top: 8rem !important
}

@media only screen and (max-width: 56.25em) {
	.u-margin-top-big {
		margin-top: 5rem !important
	}
}

.u-margin-top-huge {
	margin-top: 10rem !important
}

@media only screen and (max-width: 56.25em) {
	.u-margin-top-huge {
		margin-top: 6rem !important
	}
}

.u-padding-bottom-medium {
	padding-bottom: 4rem !important
}

@media only screen and (max-width: 56.25em) {
	.u-padding-bottom-medium {
		padding-bottom: 3rem !important
	}
}

.u-padding-bottom-big {
	padding-bottom: 8rem !important
}

@media only screen and (max-width: 56.25em) {
	.u-padding-bottom-big {
		padding-bottom: 5rem !important
	}
}

.u-glitch {
	animation: glitch1 2.5s infinite
}

.u-glitch::after,
.u-glitch::before {
	content: attr(data-content);
	position: absolute;
	left: 1.3rem
}

.u-glitch::after {
	color: #67f3da;
	animation: glitch2 2.5s infinite
}

.u-glitch::before {
	color: #f16f6f;
	animation: glitch3 2.5s infinite
}

.u-link-effect {
	font-weight: 700;
	color: #f7f7f7;
	background-color: inherit;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	transition: all .2s
}

.u-link-effect:hover,
.u-link-effect:active {
	color: #fff;
	background-color: #a7d1e2;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, .4);
	transform: rotate(5deg) scale(1.3)
}

main {
	display: grid;
	place-items: center;
	background: url(../img/pizza-bitcoin.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
	width: 100vw;
	height: 100vh
}

@media only screen and (max-width: 56.25em) {
	main {
		background: none
	}
}

.intro {
	background: rgba(0, 0, 0, .4);
	text-align: center;
	border-radius: 2rem;
	animation: moveInBottom 1s ease-in;
	font-size: 2rem
}

h1 {
	font-size: 5rem
}

.pizza-img {
	display: none
}

.img{
	width: 100%;
	display: block;
}

@media only screen and (max-width: 56.25em) {
	.pizza-img {
		width: 100%;
		display: block
	}
}

.section-content {
	display: flex
}

@media only screen and (max-width: 56.25em) {
	.section-content {
		flex-direction: column
	}
}

.section-content-text {
	flex: 2 0 0%;
	align-items: flex-start
}

@media only screen and (max-width: 56.25em) {
	.section-content-text {
		order: -1
	}
}

.section-content-img {
	flex: 1 0 0%;
	text-align: right;
	align-self: flex-end
}

.section-content-img-src {
	animation: moveInBottom 1s ease-in;
	vertical-align: top;
	max-width: 100%
}

@media only screen and (max-width: 56.25em) {
	.section-content-img {
		max-width: 70%;
		margin: 0 auto
	}
}

.section-content-grid {
	display: grid;
	grid-template-areas: "text100 text100""text image";
	align-items: end
}

@media only screen and (max-width: 56.25em) {
	.section-content-grid {
		grid-template-areas: "text100""text""image"
	}
}

.section-content-grid-text100 {
	grid-area: text100;
	padding: 2rem 0
}

.section-content-grid-text {
	grid-area: text
}

.section-content-grid-img {
	grid-area: image
}

.section-content-grid-img-src {
	animation: moveInBottom 1s ease-in;
	vertical-align: top;
	max-width: 100%
}

@media only screen and (max-width: 56.25em) {
	.section-content-grid-img {
		max-width: 70%;
		margin: 0 auto
	}
}

.container {
	display: flex;
	justify-content: center;
}

/// Cards ///
cards {
	width: 100%;
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 30px;
	padding-bottom: 30px;
}

.btc {
	display: grid;
	/* max-width: 300px;
	min-width: 250px; */
	grid-template-columns: 1fr;
	grid-template-rows: minmax(50px, 60px) 1fr;
	grid-template:
		'info'
		'chart';
	border-radius: 30px;
	background: #fff;
	padding: 30px 0;
}

.asset-info {
	grid-area: info;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5% 0 5%;
}
.asset-price {
	
}
.title {
	display: inline-flex;
}

card h1 {
	margin-left: 10px;
}

/// Charts ///
#btcChart {
	grid-area: chart;
	/*border-radius: 0px 0px 30px 30px;*/
	margin-top: auto;
}