@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

:target:before {
content:"";
display:block;
height:56px; /* fixed header height*/
margin:-56px 0 0; /* negative fixed header height */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', "Helvetica Neue", sans-serif;
}

p, li {
  color: #505050;
}

a {
  color: darkblue;
}

a:hover {
  color: #041E42;
}

.navbar:not(.scrolled) {
  transition: 500ms ease-in;
  background: transparent !important;
}

.navbar.scrolled {
  transition: 500ms ease-in;
  background-color: #041E42 !important;
}

.navbar.scrolled .nav-link {
  color: white;
}

header {
  position: relative;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: 1;
}

header h1, header h4 {
  text-shadow: 2px 2px 8px black;
}

.padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#about h1 {
  background: linear-gradient(135deg, #BF0D3E, #041E42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#members {
  background-color: #F2F1F0;
}

#members ul {
  list-style-type: none;
}

#members li:not(:last-child) {
    margin-bottom: 0.25em;
}

#board h1 {
  text-align: center;
  background: linear-gradient(135deg, #BF0D3E, #041E42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-university, .fa-book-reader, .fa-cocktail {
  font-size: 3.5em;
  color: #041E42;
  margin: 1rem;
}

.fa-map-marker-alt, .fa-phone, .fa-facebook, .fa-envelope {
  font-size: 2em;
  color: #041E42;
  margin: 1rem;
}

#contact .row {
  background-color: #F2F1F0;
}

footer {
  padding-top: 1em;
  padding-bottom: 1em;
  color: white;
  background-color: #041E42
}

footer a {
  color: white;
}

footer a:hover {
  color: grey;
}

/* Start slid up animation CSS */
.slideanim {}
.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(90%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(90%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}
/* End slid up animation CSS */
