:root {
  --green: #48a741;
  --grey: #f7f7f7;
}


.grow {
  flex-grow: 2;
}

#install {
  position: relative;
}

#install button {
  min-width: 10em;
}

#version {
  position: absolute;
  bottom: -1.5em;
  width: auto;
  left: 0;
  right: 0;
  color: red;
  font-size: .6em;
  letter-spacing: 4px;
}

h1,
h2 {
  font-size: 2em;
  line-height: 1.3em;
  margin: .8em;
}

h1 {
  font-size: 3em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
}

p {
  width: 40em;
  text-align: justify;
  max-width: 90%;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  height: 100vh;
  font-family: sans-serif;
  margin: 0;
  text-align: center;
  line-height: 1.5em;
}

#container {
  overflow-y: scroll;
  overflow-x: hidden;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 10vh 0;
}

section:nth-child(even) {
  background-color: var(--grey);
}

nav {
  display: flex;
  justify-content: space-evenly;
  box-shadow: 0 1px 5px #fff;
  z-index: 999;
  letter-spacing: 2px;
  flex-wrap: wrap;
  cursor: pointer;
}

.nav_element {
  min-width: 10em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em 2em;
  flex-wrap: wrap;
}

#navTitle {
  font-size: inherit;
  font-weight: inherit;
}

#navLogo {
  display: inline-block;
  height: 3em;
  margin: 0 .5em;
}

button , .anchorButton{
  position: relative;
  cursor: pointer;
  margin: 1em;
  background-color: white;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 1em;
  border-radius: .5em;
  text-align: center;
  font-weight: bold;
  font-size: inherit;
  font-family: inherit;
  letter-spacing: inherit;
}

button:hover, .anchorButton:hover {
  box-shadow: var(--green) inset 0 0 2px;
  text-decoration: none !important;
}


header {
  display: flex;
  min-height: 90vh;
  flex-direction: column;
  align-items: center;
}

#screenshots {
  margin: 6vh;
  position: relative;
  width: 60%;
  flex-grow: 2;
  height: auto;
}

#lightShot,
#darkShot {
  position: absolute;
  height: 80%;
  box-shadow: 1px 1px 5px 3px #aaa;
}

#darkShot {
  top: 0;
  left: 0;
}

#lightShot {
  z-index: 1;
  top: 20%;
  right: 0;
}

#keyWords {
  flex-wrap: wrap;
  margin: 1em;
  display: inline-flex;
  justify-content: space-evenly;
  align-items: center;
  min-height: 10vh;
  width: 100%;
  letter-spacing: 1px;
  line-height: 4em;
}


#footer {
  min-height: 20vh;
  display: flex;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 3em;
  flex-direction: row;
  align-content: flex-start;
}

#footer div{
    /* min-height: 20vh; */
    display: inline-flex
;
    text-align: left;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
    width: 20em;
    align-items: flex-start;
    justify-content: flex-start;
}

#footer a {
  margin: 1em;
}

#footer img {
  height: 2em;
}



#email {
  cursor: pointer;
  letter-spacing: .07em;
  position: relative;
}

#copy_toast {
  position: relative;
  display: flex;
  bottom: -2em;
  color: #333;
  opacity: 0;
  cursor: default;
  height: 0;
  width: 100%;
  transition: opacity cubic-bezier(0.5, -4, 0.7, 0.07) 2s;
  align-items: center;
  text-decoration: none!important;
  font-size: .8em;
  justify-content: center;
}
#copy_toast:hover{
  text-decoration: none!important;

}

#copy_toast img {
  margin: .2em;
}

@media (max-width: 1000px) {

  .hide_phone,
  .nav_link,
  .grow {
    display: none !important;
  }

  nav,
  .nav_element,
  #keyWords {
    flex-direction: column;
    margin-bottom: 0;
  }

  #navTitle {
    margin-bottom: 0;
  }

  #header {
    min-height: auto;
  }

  #install,
  .isMobileDnld {
    margin: 0;
    border: none;
    font-size: .8em;
    color: gray;
  }

}