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

body{
	font-family: "Orbitron", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	background: #000;
}

.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}
.pause img{
	width: 20px;
}
.logo{
	width: 30%;
	max-width: 180px;
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 1;
}
.logo img{
	width: 100%;
}
/* Section styles */
* {
  box-sizing: border-box;
}
.copyright{
	font-size: 9px;
	text-transform: uppercase;
	position: absolute;
	bottom: 30px;
	margin: auto;
	letter-spacing: 2px;
	text-align: center;
	z-index: 1
}
body {
  margin: 0;
}
.song{
	position: absolute;
    bottom: 65px;
    right: 15px;
    z-index: 1;
}

section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: white;
  overflow: hidden;
}
section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

h1 {
  font-size: 3.7em;
  margin: 0 0 0.3em;
}

p {
  font-size: 1.3em;
  margin: 0 0 1.6em;
}

button {
  padding: 15px 36px;
  border: 2px solid white;
  background: transparent;
  font-size: 1.05em;
  color: inherit;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.pattern{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	margin: auto;
	z-index:0;
	background: url(pattern.png) repeat;
}

/* countdown */
.countdown {
    display: block;
    grid-template-columns: 1fr 1fr;
    margin: 5rem 0;
    gap: 3.5%;
}

@media (max-width: 995px) {
    .countdown {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.countdown-image img {
    object-fit: cover;
    width: 100%;
}

.countdown-content h2,
h3 {
    text-transform: uppercase;
    font-weight: bold;
}

.countdown-content h2 {
    color: #1A6AA2;
    letter-spacing: 5px;
    font-size: 1.7rem;
}

@media (max-width: 425px) {
    .countdown-content h2 {
        font-size: 1.2rem;
    }
}

.countdown-content h3 {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: capitalize;

}

.countdown-content p {
    color: #969CBB;
    margin: 2rem 0;

}

/* deadline */
.deadline {
    display: flex;
}

.deadline-format {
	color: #FFF;
    margin-right: 3%;
    display: grid;
    place-items: center;
    text-align: center;
    width: 6.5rem;
    height: 4.8rem;
}

.deadline-format h2 {
    color: #FFF;
    margin-bottom: 0;
}

.deadline-format span {
    text-transform: uppercase;
    font-size: .85rem;
    display: block;
    letter-spacing: 2px;
    margin-top: -22px;
	
	animation-name:glow2;
  	animation-duration:1s;
	animation-iteration-count:infinite;

}

.deadline-format h2:not(.expired) {
    font-size: 2.6rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.25rem;
	font-weight: 400;
	
	animation-name:glow;
  	animation-duration:1s;
	animation-iteration-count:infinite;
	margin-top: 0px;
	
}
.deadline-format:last-child{
	margin-right: 0;
}

@keyframes glow{
  from{text-shadow:0px 0px 5px #fff,0px 0px 8px #d300b3;}
  to{text-shadow:0px 0px 5px #fff,0px 0px 8px #d300b3;}
}

@keyframes glow2{
  from{text-shadow:0px 0px 5px #fff,0px 0px 8px #ffea00;}
  to{text-shadow:0px 0px 5px #fff,0px 0px 8px #ffea00;}
}