#krab:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
#projectCards {
  display: flex;
  align-items: center;
  justify-content: center;
}
#card-d.card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  max-height: 850px;
  max-width: 420px;
  min-width: 220px;
  height: 100%;
}
.card-header {
  height: 100%;
  max-height: 80px;
}
.card-footer {
  height: 100%;
  max-height: 80px;
}

#card-b .card-footer {
  height: 40px;
}
#card-b .image {
  min-height: 80px;
  max-height: 350px;
}

#card-b {
  min-width: 70px;
}

.card-content {
  padding: 18px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 100px;
  max-height: 140px;
}

.hidden {
  display: none;
}

.logo {
  padding-top: 10px;
}

hr {
  width: 100%;
  margin: 0px;
}

#krab {
  animation: slide 5s;
  animation-delay: 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

@keyframes slide {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  85% {
    transform: translate(-15px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(-35px, 1px) rotate(0deg);
  }
}

.navbar-menu {
  animation: navAnimOpen 0.2s ease-in-out;
}

@keyframes navAnimOpen {
  0% {
    display: none;
    opacity: 0;
    max-height: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
    max-height: 396px;
  }
}

#cave {
  position: absolute;
  min-height: 61px;
  min-width: 72px;
  top: -1px;
  left: -73px;
  z-index: 1000;
  box-shadow: 5px -3px 9px -5px #888888;
  opacity: 1;
  background: white;
  border-right: 2px rgb(242, 242, 242);
  border-style: solid;
  border-left-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 0px;
}

#cave2 {
  position: absolute;
  min-width: 72px;
  min-height: 61px;
  top: 5px;
  left: -75px;
  z-index: 1000;
  display: none;
  opacity: 1;
  background: white;
}

#krab {
  min-height: 40px; /*
position: absolute; 
top: -0px;
left: -0px;
z-index: 99; 
*/
}

#burger {
  min-height: 60px;
  border-right: 2px rgb(242, 242, 242);
  border-style: solid;
  border-left-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 0px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  display: flex;
  padding-bottom: 75px;
}

#site-footer {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 10px;
  min-height: 45px;
}

#krabEyes {
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0;
  padding-top: 16px;
  padding-bottom: 117px;
}
.clear {
  clear: both;
  height: 20px;
}

section {
}

#main-section {
  flex: 1;
}

#button-list {
  margin-bottom: 0px;
}

#copyright {
}

#about-section {
  height: 100%;
  width: 100%;
}

#border-left {
  position: absolute;
  top: -13px;
  right: 73px;
  min-height: 73px;
  width: auto;
  z-index: 1000;
}

#icon-button {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .buttons {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .buttons {
    justify-content: right;
  }
}
