html {
    height: 100%;
}

body {
    background-color: #fffff1;
    height: 100%;
}

.image-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.coming-soon-text {
    text-align: center;
    text-transform: uppercase;
    font-family: "Liberation", times, serif;
    color: #212121;
}

.divider {
    max-width: 200px;
    color: #a5d4d9;
}

.middle {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@keyframes fade-in-ani {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadein {
	opacity: 1;
	animation-name: fade-in-ani;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1.359s;
}

