body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
}

#viewport {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.page {
    position: relative;
    width: 100%;
    height: 100%;
}
.landing.page {
    background-color: #228b22;
}
.landing.page .content {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 300px;
    margin-top: -150px;
}
@media only screen and (min-width: 480px) and (max-width: 965px) {
    .landing.page .content {
        font-size: 0.5em;
        height: 200px;
        margin-top: -100px;
    }
}
@media only screen and (min-width: 200px) and (max-width: 480px) {
    .landing.page .content {
        font-size: 0.3em;
        height: 100px;
        margin-top: -50px;
    }
}
.landing.page .content .title {
    color: #fff;
    font-size: 9em;
    font-weight: 200;
    text-align: center;
    text-transform: uppercase;
    line-height: 210px;
}
@media only screen and (min-width: 480px) and (max-width: 965px) {
    .landing.page .content .title {
        line-height: 140px;
    }
}
@media only screen and (min-width: 200px) and (max-width: 480px) {
    .landing.page .content .title {
        line-height: 70px;
    }
}
.landing.page .content .contact {
    color: #efefef;
    font-weight: 100;
    font-size: 3em;
    text-align: center;
    letter-spacing: 0.12em;
    line-height: 90px;
    unicode-bidi: bidi-override;
    direction: rtl;
    -webkit-user-select: none;
    -moz-user-select: /none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.landing.page .content .contact a {
    color: #efefef;
    text-decoration: none;
}
@media only screen and (min-width: 480px) and (max-width: 965px) {
    .landing.page .content .contact {
        line-height: 60px;
    }
}
@media only screen and (min-width: 200px) and (max-width: 480px) {
    .landing.page .content .contact {
        line-height: 30px;
    }
}

.dot {
	animation: animate 1.5s linear infinite;
	color:#8b2222;
}

@keyframes animate{ 
	0%{ 
		opacity: 0; 
	} 
	50%{ 
		opacity: 0.7; 
	} 
	100%{ 
	    opacity: 0; 
	} 
} 
