:root
{
    --fs-xl: 2rem;
    --fs-700: 1.6rem;
    --fs-600: 1.3rem;
    --fs-500: 1.1rem;
    --fs-400: 1rem;
    --fs-300: 0.8rem;
}


html, body
{
    overflow: hidden;
    height: 100vh;
    top:0;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: calc(16px + .7vmin);
    color: #ffffff;
    box-sizing: border-box;
    cursor: default;
}

h1,h2,h3,h4,h5,h6
{
    margin: 0;
}

p
{
    margin: 0;

}
a
{
    color: inherit; 
    cursor: auto; 
    text-decoration: none; 
}

.background-container 
{
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; 
    
    background-image: url('../images/homepage_backround_images/homepage_image.jpg');
    background-size: cover;
}

.color-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.582); 
}

#main_page_content_container
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    height: auto;
    width: 90vw;

    max-height: 90vh;

    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
}

#img-website-title
{
    margin-bottom: .5rem;
}

#main-grid
{
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#main-grid a
{
    cursor: pointer;
    font-size: var(--fs-500);
}

#next-daily-countdown
{
    font-size: var(--fs-300); 
    font-style: italic;
}

.grid-option
{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer
{
    display: flex;
    font-size: var(--fs-300);
    position: absolute;
    bottom: 0;
    text-wrap: nowrap;
}

footer a 
{
    font-size: var(--fs-300);
    color: #428bca;
    text-decoration: underline;
    cursor: pointer;
}

#footer-info-container
{
    padding: 0.3%;
    background-color: rgba(0, 0, 0, 0.308);
    border-top-right-radius: 20px;
    border: 1px;
}

#build42UpdateContainer
{
    display: flex;
}

#b42UpdateTextContainer
{
    color: #00a6ff;
    background-color: rgba(0, 0, 0, 0.568);
    border-radius: 1rem;
    max-width: 80%;
    font-size: var(--fs-300);
    font-style: italic;

    padding: .20rem .35rem .20rem .35rem;
    margin-bottom: 0.5%;
}

@media only screen and (max-width: 420px)
{
    footer
    {
        display: none;
    } 
}

@media only screen and (min-width: 700px) and (orientation: landscape)
{
    #main_page_content_container
    {
        width: 60vw;
    }
}

@media only screen and (min-width: 700px) and (min-height: 1000px)
{
    #main_page_content_container
    {  
        width: 75vw;
    }  
}


@media only screen and (min-width: 1440px) 
{
    #main_page_content_container
    {  
        width: 45vw;
    }  
}