@charset "utf-8";

body,
html {
  height: 100%;
}

body {
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

main {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("ul_mediendesign_vc.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

figure {
width: 20em;
}

#logo {
  width: 100%;
  height: auto;
}

#vc_info {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fefefe;
}

h1 {
  font-size: 1.5rem;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 2rem 0 0;
}

li {
  padding-bottom: 0.8em;
}

a {
  color: rgb(193, 207, 248);
}

a:hover {
  text-decoration: none;
}

.button {
  background-color: #003366;
  border: none;
  color: #fefefe;
  text-transform: uppercase;
  padding: 0.8em 1.2em;
  margin-top: 1em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  border-radius: 2em;
  transition-duration: 0.4s;
  cursor: pointer;
  box-shadow: 0px 1px 6px #999;
}

.button:hover {
  background-color: rgb(189, 218, 245);
  color:  #003366;
  box-shadow: 0px 1px 6px #999;
}

#animation {
  position: fixed;
  bottom: 0;
  left: 50%;
  padding-bottom: 2em;
}

.bouncing_ball {
  width: 1em;
  height: 1em;
  border-radius:100%;
  background: #003366;
  animation: bounce 1s;
  transform: translateY(0px);
  animation-iteration-count: infinite;
  position: relative;
  margin-top: 3em;
  margin-bottom: 5em;
}

@keyframes bounce {
	0% {top: 0;
		-webkit-animation-timing-function: ease-in;
	}
	40% {}
	50% {top: 1em;
		height: 1em;
		-webkit-animation-timing-function: ease-out;
	}
	55% {top: 2em; height: 0.5em; 
		-webkit-animation-timing-function: ease-in;}
	65% {top: 1em; height: 1em; 
		-webkit-animation-timing-function: ease-out;}
	95% {
		top: 0;		
		-webkit-animation-timing-function: ease-in;
	}
	100% {top: 0;
		-webkit-animation-timing-function: ease-in;
	}
}

@media screen and (max-width: 650px) {
  #animation {
    display: none;
  }
}