.myContent {
  flex: 1; /* takes up all available space, pushes footer down */
}

.typewriterHeading{
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 2s steps(35, end) forwards 1s, infinite;
}

.typewriterHeadingDelay{
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 2s steps(35, end) forwards 1s, infinite;
		animation-delay: 2s;
}

.typewriterHeadingDelay2{
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 2s steps(30, end) forwards 1s, infinite;
		animation-delay: 3.5s;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

selector .elementor-button-text {
    position: relative;
    top: 3px;
    width: 3px;
    min-height: 8px;
    display: block;
    background: currentColor;
    border-radius: 5px;
    -webkit-animation: 1.2s ease infinite wheel-up-down;
    animation: 1.2s ease infinite wheel-up-down;
}
selector .elementor-button-icon{
    display: none;
}
selector a:focus{
    outline: none;
}

@-webkit-keyframes wheel-up-down {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
    opacity: 0;
  }
}

@keyframes wheel-up-down {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
    opacity: 0;
  }
}

html, body {
	height: 100%;
  margin: 0;
  padding: 0;
		  background-color: #282A36;
}

body {
  display: flex;
  flex-direction: column;
		}

#site-footer {
  display: none !important;
}
		
		.animatedMouse {
	position:absolute;
  top: 70vh; /* sits at 70% of viewport height */
  left: 50%;
  transform: translateX(-50%);
				}


.omMig{
		background-color: rgba(40, 42, 54, 0.5);
		backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}