/**************************************************************************
                                Global Styles
                                
New Pallete Colors:

Media Break Points:
@media (min-width: 576px) { ... }
@media (min-width: 768px) { ... }
@media (min-width: 992px) { ... }
@media (min-width: 1200px) { ... }
@media (min-width: 1400px) { ... }

// put all hover events in this container
@media (hover: hover) { ... }

***************************************************************************/

html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialised;
    -moz-osx-font-smoothing: greyscale;
}

body {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2rem;
    font-family: "acumin-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 194.2857;
    font-weight: 400;
    color: #000;
    background-color: #D6C6F5;
}

div {
    position:relative;
}

*:focus {
	outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
	appearance: textfield;
}

#main {
    width: 100%;
}

.string-letters {
    width: 100%;
    margin-top: 50px;
}

.string-letters .banner-mobile {
    display: block;
}

.string-letters .banner-desktop {
    display: none;
}

#countdown {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.num-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom:0;
}

.nums {
    font-size: 6rem;
    line-height: 6.1rem;
    font-variation-settings: 'wght' 791, 'wdth' 90, 'slnt' 0;
}

.label {
    font-size: 1.8rem;
    line-height: 1.9rem;
    font-variation-settings: 'wght' 300, 'wdth' 90, 'slnt' 0;
}


footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 3rem;
    background-color: #D6C6F5;
    

}

footer p {
    text-align: center;
    line-height: 3rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #000;
    font-variation-settings: 'wght' 300, 'wdth' 100, 'slnt' -12;
}



@media (min-width: 390px) {

    #countdown {
        margin-top: 40px;
    }

    .nums {
        font-size: 8rem;
        line-height: 8.1rem;
    }

    .label {
        font-size: 2rem;
        line-height: 2.1rem;
    }

}

@media (min-width: 430px) {

    #countdown {
        margin-top: 40px;
    }

    .nums {
        font-size: 9rem;
        line-height: 9.1rem;
    }

    .label {
        font-size: 2rem;
        line-height: 2.1rem;
    }

}

@media (min-width: 800px) {
    #countdown {
        padding: 0 40px;
        margin-top: 100px;
        flex-direction: row;
        justify-content: space-between;
    }

    .num-cont {
        width: 15%;
    }

    .num-cont:first-child,
    .num-cont:nth-child(5) {
        width: 21%
    }

}

@media (min-width: 998px) {
    .nums {
        font-size: 11.5rem;
        line-height: 11.6rem;
    }

    .label {
        font-size: 2rem;
        line-height: 2.1rem;
    }
}

@media (min-width: 1400px) {

    .string-letters {
        margin-top: 150px;
    }


    .string-letters .banner-mobile {
        display: none;
    }

    .string-letters .banner-desktop {
        display: block;
    }

    .nums {
        font-size: 13rem;
        line-height: 13.1rem;
    }
}