/* Default Theme for Countdown-Timer © */

html{
    display: block;
    text-align: center;
    background-image: url("../img/hogwarts.gif");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    max-width: 100%;
    height: 100%;
    transition: all 0.75s ease;
    cursor: none;
}

/* Lightning animation */
.lightning{
    position: fixed;
    top: 0;
    left: 0;
    background: url('../img/hogwarts.gif');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    height: 100%;
    filter: brightness(3);
    z-index: -1;
}
  
.flashit{
    animation: flash ease-out 5s infinite;
}
  
@keyframes flash {
    from { opacity: 0; } 
    92% { opacity: 0; }
    93% { opacity: 0.6; }
    94% { opacity: 0.2; }
    96% { opacity: 1; } 
    to { opacity: 0; }
}

/* Custom Cursor start */
.custom-cursor{
    position: absolute;
    display: none;
    height: 100px;
    width: 100px;
    filter: sepia();
    user-select: none;
    transition: transform 0.2s ease;
    z-index: 105;
}

.cursor-gradient{
    display: none;
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    filter: blur(2px);
    background: radial-gradient(rgba(255,255,255,0.4), rgba(200,200,200,0), rgba(150,150,150,0));
    transition: transform 0.5s ease;
}

.spell{
    display: none;
    position: absolute;
    font-size: 48px;
    color: goldenrod;
    font-family: 'Harry Potter';
}
/* Custom Cursor end */

/* Loading screen overlay classes begin */
 /*  .overlay{
    display: block;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 1));
    z-index: 100;
}  */

.slide-up{
    animation: slideUp 1.0s ease forwards;
}

.slide-down{
    animation: slideDown 1.0s ease forwards;
}

@keyframes slideUp{
    from{
        opacity: 1;
        top: 0;
    }
    to{
        opacity: 0;
        display: none;
        top: -100%;
    }
}

@keyframes slideDown{
    from{
        opacity: 0;
        display: block;
        top: -100%;
    }
    to{
        opacity: 1;
        top: 0;
    }
}
/* Loading screen overlay classes end */

.container{
    color: #000;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    width: 75%;
    margin: auto;
    z-index: 0;
}

/* Main heading styling */
.main-heading{
    color: rgba(218, 85, 32, 0.781);
    font-family: "Heading Font";
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Timer classes begin */
.time-element{
    color: rgba(255, 255, 255, 0.75);
    font-size: 72px;
    text-align: center;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    transition: 0.3s all ease;
}

.time-unit{
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s all ease;
}
/* Timer classes end */

.info-container{
    color: #fff;
    padding: 20px;
    padding-top: 40px;
    font-size: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-container > span > i{
    color: #fff;
    font-size: 24px !important;
    vertical-align: middle;
    padding-right: 12px;
    transition: all 0.3s ease;
}

footer{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

/* Social icons (Footer) begin */
.social-icons-container{
    display: flex;
    width: fit-content;
    height: auto;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
}

.social-icon-wrapper{
    display: block;
    padding: 0 5px;
    margin: 0 15px;
}

.social-icon{
    color: rgba(255, 255, 255, 0.7);
    font-size: 36px !important;
    transition: all 0.3s ease;
}

.social-icon:hover{
    transform: scale(1.8);
}

.fa-facebook:hover{
    color: rgb(65, 105, 225);
}

.fa-instagram:hover{
    color: rgb(223, 20, 223);
}

.fa-youtube-play:hover{
    color: red;
}
/* Social icons (Footer) end */



