@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Flow+Rounded&family=Inter:wght@400;600;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body, html {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.money-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

@keyframes fall {
    from {
        transform: translate3d(0, -100px, 0) rotate(0deg);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 100vh, 0) rotate(360deg);
        opacity: 0.3;
    }
}


body {
    background-color: rgba(0,0,0,.92);
    font-family: "charm", cursive;
    color: #f0f0f0;
    font-weight: 400;
}

h1 {
    font-family: "charm", cursive;
    color: white;
    font-weight: lighter;
    margin: 0px;
}

.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
}

div.box-container {
    display: flex;
    flex-direction: row;
}

.box {
    font-weight: 200;
    font-size: 5vw;
    padding-right: 10px;
    padding-left: 10px;
}

#myVideo {
    position: fixed;

}

/* If screen size is LESS THAN 514px then change the styling for the title and countdown items */
@media screen and (max-width: 514px) {
    h1 {
        font-size: 20px;
    }

    .box {
        font-size: 4.2vw;
    }
}