@keyframes moveInLeft {
    0% {
      opacity: 0;
      transform: translateX(-10rem); }
    80% {
      transform: translateX(1rem); }
    100% {
      opacity: 1;
      transform: translate(0); } }

  @keyframes moveInRight {
    0% {
      opacity: 0;
      transform: translateX(10rem); }
    80% {
      transform: translateX(-1rem); }
    100% {
      opacity: 1;
      transform: translate(0); } }

  @keyframes moveInBottom {
    0% {
      opacity: 0;
      transform: translateY(3rem); }
    100% {
      opacity: 1;
      transform: translate(0); } }

/* landing page */

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif !important;
}

html, body {
    height: 100%;
    width: 100%;
}

html {
    position: relative;
}

body {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
    margin-bottom: 160px;
  }

h1, p {
    color: white;
    -webkit-text-stroke: 1px #000;
    flex-direction: column;
}

/* h1 {
    font-size: 60px;
}

p {
    font-size: 20px;
    margin: 0;
} */

#brandTitle {
    font-size: 65px;
    animation-name: moveInLeft;
    animation-duration: 1s;
}

#brandSubTitle {
    font-size: 40px;
    animation: moveInRight 1s ease-out;
}

#demoGifLink {
    color: #a7a7a7;
    transition: color 0.5s ease-in-out;
    margin-top: 20px;
}
#demoGifLink:hover {
    color: #727272;
    cursor: pointer;
}

/******************
* Join/Login modal
******************/

#registerModalErrorMessageContainer,
#loginModalErrorMessageContainer,
#addEditModalErrorMessageContainer {
    display: none;
    justify-content: center;
    align-content: center;
    text-align: center;
}

#loginModalErrorMessage{
    text-align: center
}

.modal-header {
    text-align: center
}


.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none !important;
}

.btn.active,
.btn:active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.dangerColor {
    color: salmon;
    font-size: 20px;
}

.successColor {
    color: #69FF8C;
    font-size: 20px;
}

/* Remove border-radius of modal. */
.modal-content  {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
}

/* Remove border-radius of input fields. */
.form-control {
    border-radius: 0 !important;
    -webkit-appearance: none !important;
}

#registerLink, #loginLink {
    margin-left: 10px;
}

/******************
* Join/Login button
*******************/
@import url(https://netdna.bootstrapcdn.com/font-awesome/2.0/css/font-awesome.css);

a.button{
    background: #ECECEC;
    text-align: center;
    padding: 10px 20px;
    display: block;
    font-weight: bold;
    color:#7f7f7f;
    text-decoration: none;
    text-shadow:0px 1px 0px #fff;
    border:0.5px solid #a7a7a7;
    width: 150px;
    margin:10px auto;
    border-radius: 20px;
    animation: moveInBottom .5s ease-out .75s;
    animation-fill-mode: backwards;
    transition: all .2s;
}
a.button{
    color: rgb(105, 105, 105);
    margin-bottom: 10px;
}

a.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem .8rem rgba(0, 0, 0, 0.2);
    text-decoration: none;
    cursor: pointer;
    color:#7f7f7f; }
    a.button:hover::after {
      transform: scaleX(1.4) scaleY(1.6);
      opacity: 0; }

a.button:active, a.button:focus {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 .2rem .4rem rgba(0, 0, 0, 0.2);
}
