body {font-family: Arial}

.mdx-hero.is-fullheight {
        min-height: 100vh;
    }

.mdx-hero h1 {
	color: currentcolor;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media screen and (max-width:29.9375em) {
	.mdx-hero h1 {
		font-size: 1.4rem;
	}
}

@media screen and (min-width:60em) {
	.mdx-hero {
		align-items: center;
        justify-content: space-between;
		display: flex;
	}

	.mdx-hero__content {
		max-width: 19.5rem;
	}

	.mdx-hero__image {
		width: 10rem;
	}
}

.mdx-hero__content {
    position: relative;
    z-index: 2;
}

.mdx-hero__line {
    position: absolute;
    top: 7.5%;
    transform: translateY(-50%);
    left: 0;
    width: 0vw;
    height: 2px;
    background: #ffffff;
    animation: strike 1s 16.5s linear forwards;
    z-index: 1;
}

.mdx-hero__nfdi {
    offset-path: path('M122,122a50,35 0 0,0 1225,0a50,35 0 0,0 -1225,0');
    animation: fly 12s linear forwards;
    offset-rotate: 0deg
}

.mdx-hero__jupyter {
    offset-path: path('M122,140a50,35 0 0,0 -1225,0a50,35 0 0,0 1225,0');
    animation: fly 8s linear forwards;
    animation-iteration-count: 2;
    offset-rotate: 0deg
}

/* #h {
    fill: #137f48
} */

.mdx-hero .md-button {
	color: var(--md-primary-fg-color);
	margin-right: .5rem;
	margin-top: .5rem;
}

.mdx-hero .md-button:focus,.mdx-hero .md-button:hover {
	background-color: var(--md-accent-fg-color);
	border-color: var(--md-accent-fg-color);
	color: var(--md-accent-bg-color);
}

.mdx-hero .md-button--primary {
	background-color: var(--md-primary-fg-color);
	border-color: var(--md-primary-fg-color);
	color: var(--md-primary-bg-color);;
}

.footer-row {
  max-width: 25em
}

/* @keyframes strike {
    to {
        width: 5vw;
    }
}

@keyframes fly {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
} */

/*
Styling for the tooltip
*/

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: pointer;
}
.tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: var(--md-primary-fg-color--dark);
    text-align: center;
    border: thin solid;
    border-radius: 6px;
    padding: 6px;
    position: absolute;
    z-index: 1;
    bottom:125%;
    left: 50%;
    margin-left: -60px;
    transition: opacity 0.3s, visibility 0s 0.3s;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}