/* This is the container section */
body {
    font-family: "Lucida Sans", sans-serif;
    margin: 0; padding: 0;
    background: #f7f9fa;
    color: #333; 
}
.header {
    background: #f7f9fa;
    font-family: "Lucida Sans", sans-serif;
    color: #000066;
    text-align: center;
    padding: 1em 0;
}
.footer {
    font-family: "Lucida Sans", sans-serif;
    background: #000066;
    color: #ffffff;
    text-align: center;
    padding: 1em 0;
}
.container {
    max-width: 40%;
    text-align: center;
    margin: 1em auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 1 2px 8px rgba(0,0,0,0.08);
    padding: 2em;
}
.index-container {
    width: 700px;
    height: 450px;
    text-align: center;
    margin: 1em auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 1 2px 8px rgba(0,0,0,0.08);
    padding: 1em;
}

/* This is the Menu and Breadcrumbs section */
nav {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border: 2px solid #EBECF1;
  border-radius: 30px;
  background: #000066;
  color: #ffffff;
  animation: slide-in 1s ease-out;
}
ul {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  margin: 0;
  padding: 0 30px;
  color: #000066;
  list-style-type: none;
  li:not(:last-child) {
    margin-right: 40px;
  }
  li {
    border: 2px solid transparent;
    border-radius: 3px;
    padding: 10px;
    color: #000066;
    transition: background 0.2s;
    a {
      color: #000066;
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    ul {
      visibility: hidden;
      opacity: 0;
      position: absolute;
      display: block;
      margin: 12px -12px;
      padding: 0;
      background: #FFF8CC;
      border: 2px solid #000066;
      border-radius: 5px;
      transition: opacity 0.2s, visibility 0.2s;
      li {
        margin: -2px 0 0 -2px;
        width: calc(100% - 20px);
        line-height: 1.7;
        a {
          color: #000066;
        }
      }
    }
    &:hover {
      background: #FFF8CC;
      border: 2px solid #000066;
      a {
        color: #000066;
      }
      ul {
        visibility: visible;
        background: #FFFFF0;
        opacity: 1;
        color: #000066;
        li {
          a {
            color: #000066;
          }
        }
      }
    }
  }
}
/* Not sure if I want the motion...
@keyframes slide-in {
  0% {
    top: -10px;
  }
  40% {
    top: 20px;
  }
  70% {
    top: 10px;
  }
  100% {
    top: 15px;
  }
} */

/* Other formatting section */
.centered-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 200px;
    height: 100px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.locations {
    max-width: 100%;
    text-align: center;
    margin: 1em auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1em;
}
input, textarea {
    width: 100%;
    padding: .7em;
    margin: .5em 0 1.2em 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    background: #000066; /* #4196FD; */
    color: #ffffff;
    padding: .4em 1em;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    font-size: 1em;
}
a:link {
    color: #ffffff;
}
a:visited {
    color: #ffffff;
}
a:hover {
    color: #2B2BFF;
}
:lang(en) {
      font-family: "Lucida Sans", sans-serif;
}
:lang(fr) {
      font-family: "Lucida Sans", sans-serif;
}
img {
     vertical-align:middle;
}
span {
     vertical-align:middle;
}



/* TESTING SECTION*/


/* OTHER TESTING AREA */
