html {
    text-align: center;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 90%;
}

body {
    background: #111;
    color: #eee;
    height: 100%;
    width: 100%;
    align-items: center;
    overflow-x: hidden;
    line-height: 50px;
}

#container {
  position: absolute;
  width: 75%;
  height: 75%;
  margin-left: 8%;
  /* padding-right: 12.5%; */
  top: 10%;
  display: block;
  background-image: url(/images/logo_new.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
  animation: fadeOut ease 10s;
  -webkit-animation: fadeOut ease 10s;
  -moz-animation: fadeOut ease 10s;
  -o-animation: fadeOut ease 10s;
  -ms-animation: fadeOut ease 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 1;
}

.important, p, img, .countdown-container, .footer {
    animation: fadeIn ease 10s;
    -webkit-animation: fadeIn ease 10s;
    -moz-animation: fadeIn ease 10s;
    -o-animation: fadeIn ease 10s;
    -ms-animation: fadeIn ease 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 1;
}

.important {
    align-items: center;
    overflow-x: hidden;
    width: 50%;
    margin: auto;
    margin-left: 25%;
    line-height: 50px;
    color: rgb(214, 28, 28);
    font-weight: 700; border: 4px solid rgb(214, 28, 28);
    padding: 15px;
    font-size: 2.5rem;
    text-decoration: underline;
}

p {
    display: block;
    text-align: center;
    width: 100%;
    margin: auto;
    /* width: 140vh; */
    padding-top: 3vh;
    padding-bottom: 50px;
    font-size: 2.5rem;
}

img {
    max-width: 80%;
    width: 40%;
    margin-bottom: 25px;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
}


@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@-moz-keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@-webkit-keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@-o-keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@-ms-keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}



@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-o-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


.countdown {
	min-height: 100vh;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: top;
	padding-top: 200px;
}

.countdown-container {
    font-family: Arial, Helvetica, sans-serif;
	display: flex;
    margin: auto;
    width: auto;
    max-width: 100vh;
    max-height: 15em;
    text-align: center;
    align-items: center;
	justify-content: space-evenly;
	background-color: #000000;
	border-radius: 15px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.082), 0 2px 2px rgba(255, 255, 255, 0),
		0 4px 4px rgba(0, 0, 0, 0.11), 0 8px 8px rgba(0, 0, 0, 0.11),
		0 16px 16px rgba(0, 0, 0, 0.11), 0 32px 32px rgba(0, 0, 0, 0.11);
}

.content {
	padding: 2px;
}

.cd-number {
	font-size: 5rem;
	font-weight: bolder;
	text-align: center;
    width: auto;
	color: #ddd;
    margin: 5px;
    padding: 20px;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.233),
		0px 18px 23px rgba(0, 0, 0, 0.295);
}

.cd-text {
	font-size: 1.3rem;
	font-weight: lighter;
	padding: 5px;
	text-align: center;
	color: #ddd;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.233),
		0px 18px 23px rgba(0, 0, 0, 0.295);
}

.footer {
    font-size: 12px;
}

.footer a {
    color: white;
}

@media (max-width: 600px) {
  html {
    max-width: 100%;
    /* overflow: hidden; */
  }

  body {
    margin: 0px;
  }

  #container {
    position: absolute;
    width: 100%;
    height: auto;
    /* padding-left: 12.5%;
    padding-right: 12.5%; */
    top: 10%;
    display: block;
    background-image: url(/images/logo_new.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
    animation: fadeOut ease 10s;
    -webkit-animation: fadeOut ease 10s;
    -moz-animation: fadeOut ease 10s;
    -o-animation: fadeOut ease 10s;
    -ms-animation: fadeOut ease 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 1;
  }

  .important, p, img, .countdown-container, .footer {
    animation: fadeIn ease 10s;
    -webkit-animation: fadeIn ease 10s;
    -moz-animation: fadeIn ease 10s;
    -o-animation: fadeIn ease 10s;
    -ms-animation: fadeIn ease 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 1;
  }

  .important {
    align-items: center;
    overflow-x: hidden;
    width: 50%;
    margin: auto;
    /* margin-left: 25%; */
    line-height: 2.5rem;
    color: rgb(214, 28, 28);
    font-weight: 700; border: 4px solid rgb(214, 28, 28);
    padding: 15px;
    font-size: 1.5rem;
    text-decoration: underline;
  }

  p {
    display: block;
    text-align: center;
    line-height: 2rem;
    width: 90%;
    margin: auto;
    /* width: 140vh; */
    padding-top: 3vh;
    padding-bottom: 50px;
    font-size: 1.25rem;
  }

  img {
    width: 100vh;
    margin-bottom: 25px;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cd-number {
    font-size: 3rem;
    padding: 10px;
  }
}