body {
    display: block;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
    margin: 0;
    font-family: Arial, sans-serif;
}
/*---------------------------------------
	TYPOGRAPHY              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
    font-family: 'Muli', sans-serif;
    font-weight: bold;
    line-height: inherit;
}

h1 {
    color: #252525;
    font-size: 3em;
    line-height: normal;
}

h2 {
    color: #353535;
    font-size: 2em;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.5em;
}

h3,
h3 a {
    color: #454545;
}

p {
    color: #757575;
    font-size: 15px;
    font-weight: normal;
    line-height: 24px;
}
.container {
    text-align: center;
}

h1 {
    font-size: 10rem;
    color: #ff6f61;
}

.ufo {
		height: 240px;

    position: relative;
    display: inline-block;
    margin-top: -50px;
    animation: fly 3s ease-in-out infinite;
}

.ufo-img {
    animation: swing 3s infinite ease-in-out;
}

.beam {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 60px;
    height: 200px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.beam-img {
    position: absolute;
	top: -2px;
    z-index: -2;
    width: 100%;
    height: 100%;
	left: 0%;
    animation: pulse 1.5s infinite ease-in-out;
}

.logo-img {
	display:block;
	z-index: -1;
    top: 100%;
	position: absolute;
    width: 170px;
    animation: abduct-logo 4s ease-in-out infinite;
}


@keyframes fly {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

@keyframes abduct-logo {
    0%, 100% { transform: translateY(0); }
    100% { transform: translateY(-140px); }
}
