:root {
  --color-bg: #69F7BE;
  --color-text-main: #000000;
  --color-primary: #FFFF00;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "HK Grotesk";
  --font-family-header: "HK Grotesk";

  --font-size: 24px;
}

/* Basic page style resets */
* {
  -webkit-tap-highlight-color: transparent;
  overflow-y: visible;
  overflow-x: visible;
  box-sizing: border-box;
  transition: all .15s ease;
  margin:0px;
}
[hidden] {
  display: none !important;
}

/* Import fonts */
@font-face {
  font-family: HK Grotesk;
  src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Regular.otf?v=1603136326027")
    format("opentype");
}
@font-face {
  font-family: HK Grotesk;
  font-weight: bold;
  src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Bold.otf?v=1603136323437")
    format("opentype");
}

/* Our remix on glitch button */
.btn--remix {
  font-family: HK Grotesk;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  line-height: 1rem;
  font-weight: 500;
  height: 2.75rem;
  align-items: center;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  margin-left: auto;
}

/* Navigation grid */
.footer {
  display: flex;
  justify-content: space-between;
  margin: 1rem auto 0;
  padding: 1rem 0 0.75rem 0;
  width: 100%;
  flex-wrap: wrap;
/*   border-top: 4px solid #fff; */
}

.footer a:not(.btn--remix):link,
a:not(.btn--remix):visited {
  font-family: HK Grotesk;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1rem;
  color: #000;
  text-decoration: none;
  border-style: none;
}
.footer a:hover {
  background: var(--color-primary);
}

.footer .links {
  padding: 0.5rem 1rem 1.5rem;
  white-space: nowrap;
}

.divider {
  padding: 0 1rem;
}
/******************************************************************************
END Glitch hello-app default styles
******************************************************************************/


html {
  scroll-behavior: smooth;
}

a {
  transition: all .1s ease, text-decoration-thickness .1s ease, text-decoration-color .1s ease;
  text-decoration-thickness: 0px;
  text-decoration-color: transparent;
}

a:active, a:hover {
  transform: translateY(5px);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--color-text-main);
}

nav {
  display:inline-block;
  position: initial;
  top:0px;
  left: 0px;
  right:0px;
  padding: 15px;
  width: 100%;
}

nav .nav_links {
  float:right;
}

nav li {
  float: left;
  width: max-content;
  list-style: none;
}
nav li a {
  text-decoration-thickness: 0px;
  font-size: calc(var(--font-size) + 6px);
  color: var(--color-text-main);
}
nav li a:hover {
  color: var(--color-primary);
  text-decoration: underline;

}
body {
  font-family: HK Grotesk;
  background-color: var(--color-bg);
  overflow-y: visible;
}

/* Page structure */
.wrapper {
  overflow-y: visible;
  min-height: var(--wrapper-height);
  display: grid;
  place-items: center;
  margin: 0 0;
  align-items: start
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Very light scaling for our illustration */
.title {
  color: #2800FF;
  font-family: HK Grotesk;
  font-style: normal;
  font-weight: bold;
  font-size: 100px;
  line-height: 105%;
  margin: 0;
}

/* Button - Add it from the README instructions */
button,
input {
  font-family: inherit;
  font-size: 100%;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  transition: 500ms;
}

/* Subheading */
h2 {
  color: #2800FF;
}

.dipped {
  transform: translateY(5px);
}


@media screen and (max-width:720px) {
  .title {
    font-size: 80px;
  }
}