body {
    font: 20px Montserrat, sans-serif;
    line-height: 1.8;
    color: #f5f6f7;
  }
  p {font-size: 16px;}
  .margin {margin-bottom: 45px;}
  .bg-1 { 
    background: linear-gradient(112.73deg, #C31432 -3.64%, #240B36 104.34%);
    color: #ffffff;
  }
  .bg-2 { 
    background: linear-gradient(112.73deg, #bdc3c7 -3.64%, #2c3e50 104.34%);
    color: #fff;
  }
  .bg-3 { 
    background: linear-gradient(112.73deg, #000428 -3.64%, #004e92 104.34%);
    color: #fff;
  }
  .bg-4 { 
    background-color: #2f2f2f; /* Black Gray */
    color: #fff;
  }
  .bg-5{
    background-color: #ffffff;
  }
  .container-fluid {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
    font-size: 12px;
    letter-spacing: 5px;
  }
  .navbar-nav  li a:hover {
    color: #1abc9c !important;
  }

  img#myImage:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
  }
  
  @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); }
  }

  .fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
  }
  
  .fa:hover {
      opacity: 0.7;
      color:white;
  }

  .fa-linkedin {
    background: #007bb5;
    color: white;
  }

  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  .fa-instagram {
    background: #125688;
    color: white;
  }

  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color:black;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: #555;
  }

  .content{
    display: block;
    position: relative;
    width: 100%;
    z-index: 2;
  }

  footer{
    height: 200px;
    position: fixed;
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: 1;
  }
  .fake-footer{
    width: 100%;
    height: 150px;
  }

  @keyframes headerFadeIn{
    0%{
      transform: translateX(-40px);
      opacity: 0;
    }
    100%{
      transform: none;
      opacity: 1;
    }
  }

:root{
  --color1:#f1c40f; --color2:#2c3e50; --speed:4s;
}
.cont{
  height: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
}
.cont .bar{
  min-height: 100px;
  border-radius: 10px;
  width: calc(113px * 4);
  box-shadow: 0px 10px 13px -6px #2c3e50;
  background-color: var(--color2);
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px, 
    var(--color1) 40px, var(--color1) 80px
  );

  animation: slide var(--speed) linear infinite;
  will-change: background-position;
}
@keyframes slide{
  from{
    background-position-x: 0;
  }
  to{
    background-position-x: 113px;
  }
}