@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;700&display=swap');

body, html {
  height: 100%;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: white;
  text-align: center;
}

.bg {
  background-image: url('../img/bg.jpg');
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  animation: fadein 2s ease-in-out;
}

p {
  font-size: 1.2em;
  animation: fadein 3s ease-in-out;
}

#countdown {
  font-size: 2em;
  margin-top: 20px;
  font-weight: bold;
  animation: fadein 4s ease-in-out;
}

@keyframes fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}
