﻿@import url('https://fonts.googleapis.com/css2?family=Comforter+Brush&display=swap');

body {
    margin: 0;
    background: #111;
}
:root {
    /* the only thing needed is a grainy/noisy background image */
    --glitter: url("https://assets.codepen.io/13471/silver-glitter-background.png");
}

.fire::before,
.fire::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index:350;
}

.fire::before {
    content: "";
    background-image: var(--glitter), var(--glitter), linear-gradient( 0deg, white 0px, #ff8951 5px, #dcbc169c 30%, transparent 70% ), radial-gradient(ellipse at bottom, transparent 30%, black 60%);
    background-size: 350px 500px, 400px 650px, 100% 100%, 100% 100%;
    background-blend-mode: hard-light, color-dodge, multiply;
    background-position: 0px 0px, 0px 0px, var(--gradientPos);
    background-repeat: repeat, repeat, repeat, no-repeat;
    mix-blend-mode: color-dodge;
    filter: brightness(3.7) blur(7px) contrast(6);
    animation: fire 1.75s linear infinite;

}


@keyframes fire {
    0% {
        background-position: center 0px, center 0px, 50% 100%, center center;
    }

    100% {
        background-position: center -500px, center -650px, 50% 100%, center center;
    }
}


.comforter-brush-regular {
    font-family: "Comforter Brush", cursive;
    font-style: normal;
    font-size: 100px;
}

.comforter-brush {
    font-family: "Comforter Brush", cursive;
    font-style: normal;
}



.fire {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.light {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: pulse 0.8s infinite alternate;
}

/* Pulsing animation */
@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0.5;
    }
}




.countdown {
    background: #eee;
    height: 287px;
    width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    flex-wrap: wrap;
}

.timer,
.signup {
    //flex: 1;
    //border: 1px solid red;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    //align-content: space-around;
}

    .timer h3 {
        font-weight: 700;
        font-size: 22px;
    }

    .signup h1 {
        max-width: 350px;
        text-align: center;
        font-weight: 400;
        font-size: 26px;
    }

.counter .btn {
    display: inline-block;
    min-width: 280px;
    padding: 10px 28px;
    background: #009edb;
    font-size: 26px;
    color: white;
    text-decoration: none;
    text-align: center;
}

.counter {
    display: flex;
    max-width: fit-content;
    gap: 0.75em;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin-top:25px;
}

    .counter .counter__box {
        text-align: center;
        background: linear-gradient(90deg, #FDBB2D 0%, #3A1C71 100%);
        width: 89px;
        height: 103px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0.25rem;
        border-radius: 10px;
    }

    .counter .counter__time {
        font-size: 3rem;
        margin: 0;
        padding: 0;
        font-weight: bold;
    }

    .counter .counter__duration {
        font-size: 0.8rem;
        text-transform: capitalize;
        margin: 0;
        padding: 0;
        color: #eee;
    }

/* HELPERS */

.dots {
    font-size: 52px;
    color: #FDBB2D;
    margin: -0.75rem;
    padding: 0;
}

.exp {
    font-size: 52px;
    font-family: "Roboto", sans-serif;
}

.black-white {
    background: linear-gradient( to top, #002e46 0%, #002e46 50%, #4d707f 50%, #4d707f 100% );
}

.sky-blue {
    background: linear-gradient( to top, #009edb 0%, #009edb 50%, rgba(127, 206, 236, 0.95) 50%, rgba(127, 206, 236, 0.95) 100% );
}


.next_board{
    background-color:black;
    color:white;
    min-height:350px;
    padding:20px;
}
.next_board h1{
    color:antiquewhite;
}

    .next_board .inner {
        border: 5px solid white;
        min-height: 310px;
        text-align: center;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.next_board img{
    height:120px;

}

.tickets {
    min-height: 60vh;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-ticket {
    text-align: center;
    min-height: 350px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.new-ticket .form-control-sm{
    border-color: #ff6a00;
    padding:7px 10px; 
}

@media (max-width: 720px) {

    .comforter-brush-regular {
        font-family: "Comforter Brush", cursive;
        font-style: normal;
        font-size: 65px;
    }

    .new-ticket {
        text-align: center;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tickets .next_board {
        margin-top: 10px;
    }

    .counter {
        max-width: fit-content;
        gap: 0.5em;
        font-weight: 700;
        margin-top: 25px;
    }

        .counter .counter__box {
            width: 79px;
            height: 93px;
            margin: 0.15rem;
            border-radius: 3px;
        }

        .counter .counter__time {
            font-size: 2rem;
            margin: 0;
            padding: 0;
            font-weight: bold;
        }

        .counter .counter__duration {
            font-size: 0.6rem;
        }
}