@charset "UTF-8";
/* CSS Document */

html, body {
    padding: 0;
    margin: 0;
    font-size: 100%;
    color: #004FB5;
    font-family: "IslandMoments", Georgia;;
    font-weight: 100;
    background-color: rgb(225,255,255);
}

/* new modied*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

#ei-logo-box {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 90vh;
	align-items: center;
	justify-content: center;
}
#ei-logo {
	position: relative;
	display: flex;
	height: 50vh;
	width: auto;
}
#ei-name {
	font-size: 2em;
}
#credits {
	position: fixed;
	left: 0;
	bottom: 0;
	padding: 1em;
}

p {
	font-size: 1.5em;
	padding: 0;
	margin: 0;
}

@media (max-width: 600px){
#ei-logo {
	height: 30vh;
}

}

/* animations */

#ei-logo-box {
    animation: fadeInAnimation ease 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}