/*
 * Globals
 */

/* Load animation */
@keyframes displayAnimation {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes opacityAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation used to wait some time before animating displayAnimation */
@keyframes wait {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Links */
a,
a:focus,
a:hover {
  color: #333;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #fff;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #333;
  border: .05rem solid #333;
}


/*
 * Base structure
 */

html,
body {
  height: 100%;
  background-color: #fff;
}

body {
  display: -ms-flexbox;
  display: flex;
  color: #333;
  /* This is changed once animations have finished with javascript */
  overflow: hidden;
}

.cover-container {
  max-width: 52em;
}

.cover-heading{
  animation: 0.6s ease-out 0s 1 wait, 1s ease-out 0.6s 1 displayAnimation;
  font-family: 'Helvetica', sans-serif;
  font-weight: bold;
}


/*
 * Header
 */

.title-div{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: : red;
}

.app-icon {
  height: 6rem;
  margin-right: 1rem;
  animation: 0.2s ease-out 0s 1 wait, 1s ease-out 0.2s 1 displayAnimation;
}

.masthead-brand {
  animation: 0.2s ease-out 0s 1 wait, 1s ease-out 0.2s 1 displayAnimation;
  margin-bottom: 0;
  font-family: 'Roboto Condensed', sans-serif;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
}

h1{
  letter-spacing: 10px;
  font-weight: 700;
  font-size: 3.4rem;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(0, 0, 0, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(0, 0, 0, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #333;
  border-bottom-color: #333;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}

.app-image-div{
  max-height: 65vh;
}

.app-image{
  animation: 1.4s ease-out 0s 1 wait, 1.4s ease-out 1s 1 displayAnimation;
}


.info-text{
  animation: 0.8s ease-out 0s 1 wait, 1s ease-out 0.8s 1 displayAnimation;
  color: #646464;
  font-size: 1rem;
}

.notification-update-form{
  animation: 1.2s ease-out 0s 1 wait, 1s ease-out 1.2s 1 displayAnimation;
}

.nounderline{
  text-decoration: none !important
}

.store-button{
  display: inline-block;
  z-index: 9999;

  padding-top: 6px;
  height: 64px;
  border-radius: 64px;
  overflow: hidden;

  background-color: black;
  box-shadow: 0 9px 25px 0 rgba(0, 0, 0, 0.05), 0 6px 7px 0 rgba(0, 0, 0, 0.05);
}

.store-button:active, .store-button:hover{
  box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}

.store-button-google{
  animation: 1s ease-out 0s 1 wait, 1s ease-out 1s 1 displayAnimation;
}

.store-button-apple{
  animation: 1.2s ease-out 0s 1 wait, 1s ease-out 1.2s 1 displayAnimation;
}

/*
 * Footer
 */

.footer{
  animation: 1.6s ease-out 0s 1 wait, 1s ease-out 1.6s 1 displayAnimation;
  background-color: #f5f5f5;
  flex-shrink: 0;
}

.container {
  width: auto;
  max-width: 680px;
  padding: 0 15px;
}

.mastfoot {
  color: rgba(0, 0, 0, .5);
}
