* { 
  padding: 0;
  margin: 0;

}

#splash {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1509878445230-47cd7c47a571?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80");
  background-position: center;
  background-size: cover;
	margin: 0;
}

h1 {
	color: white;
  font-weight: 100;
  font-size: 42px;
  font-family: arial;
  animation-duration: 2s;
  animation-delay: 2s;
}

button {
	padding: 10px 50px;
  border: 2px solid white;
  background-color: Transparent;
  color: white;
	border-radius: 10px;
  animation-delay:2s;
	font-size: 30px;  
  animation-name: colorShift-2;
  animation-duration: 2s;
	animation-fill-mode: forwards;
}


.ex-1 {
  background-size: contain;
  background-repeat: no-repeat;
}

.ex-2 {
  background-size: 50%;
  background-repeat: no-repeat;
}

@keyframes colorShift {
  from {
    background-color: Transparent;
    color: white;
    padding: 10px 100px;
    border-radius: 50px;
  }
  
  to {
    background-color: white;
    color: black;
    padding: 10px 100px;
    border-radius: 50px;
  }
}


@keyframes colorShift-2 {
  0% {
    background-color: Transparent;
    color: white;
    padding: 10px 50px;
    border-radius: 50px;
  }
  
  12% {
    background-color: white;
    color: red;
    padding: 10px 80px;
    border-radius: 50%;
  }

50% {
    background-color: green;
    color: black;
    padding: 10px 20px;
    border-radius: 20%;
  }

  100% {
    background-color: white;
    color: black;
    padding: 10px 100px;
    border-radius: 50px;
  }
  
}