body {
    background-color: rgb(255, 255, 255); 
    font-family: "Afacad", sans-serif;
}

header {
    position: relative;
}

.container {
    z-index: 42; 
}

.countdownLogo {
    margin-top: 40px; 
    transition: all 1s ease-out;
    opacity: 0.7;
}

.countdownLogo:hover {
    opacity: 1;
}

.outerBox {
    position: absolute;
    top: 0px;
    height: 100%;
    min-height: 700px;
    color: rgb(255, 255, 255); 
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    animation: 30000ms ease-in-out infinite color-change;  
}


.outerboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgb(255, 255, 255) 0%, transparent 50%)
}

.outerBox .logo {
    border: 1px solid #FFF;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFF;
    padding: 10px 20px; 
    margin-bottom: 20px; 
    border-radius: 6px;
    text-decoration: none;
}

.outerBox  .description {
    max-width: 600px; 
    margin: 0 auto; 
    margin-top: 40px; 
}

.outerBox #countdownDescription {
    max-width: 600px; 
    margin: 0 auto; 
}


.outerBox .countdownForm {
    margin-top: 20px; 
}

.outerBox .countdownForm .name{
    max-width: 400px; 
    height: 46px; 
    width: 80%;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    position: relative;
    padding: 10px 10px; 
    color: black; 
}

.outerBox .countdownForm .date{
    max-width: 400px; 
    height: 46px; 
    width: 80%;
    margin-top: 10px; 
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    position: relative;
    color: black; 
    padding: 10px 10px; 
}

.outerBox .countdownForm .submit{
    max-width: 400px; 
    height: 46px; 
    width: 80%;
    margin-top: 10px; 
    border: none;
    background-color: rgb(236, 157, 0);
    border-radius: 6px;
    color: #FFF; 
    position: relative;
    padding: 10px 10px; 
}


.outerBox .countdownBox {
    width: 600px; 
    position: relative;
    margin: 0 auto; 
}

.outerBox .firstQuickLinks .firstQuickLinks {
    margin-top: 40px; 
    position: relative;
}


.outerBox .firstQuickLinks .quicklinks a {
    color: #FFF; 
    border: 1px solid rgba(255, 255, 255, 0.4); 
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 3px 6px; 
    margin: 6px; 
}


.afterBox {
    text-align: center;
    position: absolute;
    top: max(700px, 100%);
    width: 100%;
    padding-top: 30px;
    color: #303030;
    background-color: rgb(255, 255, 255);
}

.afterBox .quicklinks {
    top: 0px; 
    margin-top: 30px; 
    margin-bottom: 30px; 
    line-height: 50px;
    position: relative;
}

.afterBox .quicklinks a {
    position: relative;
    color: #FFF; 
    border-radius: 5px;
    font-size: 14px;    
    margin: 0px 4px; 
    padding: 10px 28px; 
    background-color: rgb(236, 157, 0);

}

.afterBox footer{
    margin-bottom: 80px; 
    margin-top: 40px; 
}

.afterBox footer .links a { 
    color: #bbb;
    text-decoration: none;
    margin: 4px; 
}



@media only screen and (max-width: 550px) {
    
}

@keyframes color-change {
    0% {
      background-color: rgb(0, 155, 222);
    }
    20% {
      background-color: rgb(227, 193, 1);
    }
    40% {
      background-color: indianred;
    }
    60% {
      background-color: violet;
    }
    80% {
      background-color: rgb(33, 169, 18);
    }
    100% {
      background-color: rgb(5, 169, 169);
    }
  }