@charset "UTF-8";

body {
	background-image: radial-gradient(white, lightblue, blue, darkblue, black);
/* 	background-repeat: no-repeat; */
    background-position: center; 
  	height:98vh;
	display: flex;
  	align-items: center;
  	justify-content: center 
}

img {
  position:absolute;
  width: 25%;
  height: auto;
}

img#logo {
	width:10%;
	margin-left:-5vw;	
}

#stop {
  animation: fadeout 8s;
  width: 100%;
  padding-top:4vh;
  text-align: center;
  color:#800;
  margin-top:26vh;
  opacity: 0;
  font: 1.8vh arial, sans-serif;
}

#start {
  animation: fadein 8s;
    width: 26%;
}
@keyframes fadein {
  from { opacity: 0}
  to   { opacity: 1}
}
@keyframes fadeout {
  from { opacity: 1}
  to   { opacity: 0}
}