* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Arial";
    background-color: black;
    overflow: hidden;
}

.container {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    background: black;
    transition: all 0.3s ease;
    z-index: 2;
}

.container video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 3;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.callout-container {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -44px 0 0 -65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 140px;
    z-index: 4;
    color: white;
}

.callout-container svg {
    width: 70px;
}

.hand-tap{
	fill: #fff;
	stroke: #000;
	stroke-width: 3px;
	stroke-linecap: round;
	stroke-linejoin: round;
    -webkit-animation: tap 4s ease-out backwards;
    animation: tap 1.25s ease-out backwards;
	animation-iteration-count: 4;
}

.tap-1 {
	fill: transparent;
	stroke: #fff;
	stroke-width: 3px;
	stroke-linecap: round;
	stroke-linejoin: round;
    opacity: .5;
}

.social {
    position: absolute;
    z-index: 10;
    bottom: 0.25em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin-left: 20px;
}

.social li a {
    display: inline-block;
}
  
.social-link {
    filter: invert(1);
    transform: scale(0.5);
    transition: transform 0.3s ease-in;
}

.social-link:hover {
    transform: scale(0.5) translateY(-0.94em);
}

.contact {
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease-in;
}

.social > * + * {
    margin-left: 1.25em;
}

/* Animation Keyframes */

@keyframes tap {
	0% {
		transform: rotateX(0deg);
	}
	10% {
		transform: rotateX(12.5deg);
	}
	25% {
		transform: rotateX(25deg);
	}
}

/***** mobile ******/
@media (max-width: 767px) {
    .container video {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: revert;
        z-index: 3;
    }
}