@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;
    
}


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;
    }
}