/* FOR ENTIRE PAGE CONTENT*/
html, body, main {
    /* FILL ENTIRE VIEWPORT*/
    height:100vh; 
    width:100vw;
    /* ENSURE NO PADDING OR MARGINS */
    margin:0;
    padding:0;
    /* ONLY SHOW WHAT FITS IN VIEWPORT */
    overflow: hidden;
    /* SET Z-Index TO BE BEHIND EVERYTHING */
    z-index: -2;
}
/*******************************************************************/
.centerContents {
    display: flex;
    justify-content: center;
    align-items:center;
}
.leftAlign { justify-content: flex-start; }
.rightAlign { justify-content: flex-end; }

/* Used to remove dots for all ul/li */
ul { list-style-type: none; }
/* Used to make sizing include padding & border */
* {box-sizing:border-box} 
/*******************************************************************/
/* Use this class on the img tag you want as the background img*/
.bgImg {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
/*******************************************************************/
/* NAVBAR, MAINVIEW, & FOOTER CSS START */
#rowNav, #rowFoot { height: 10%; width: 100%; background-color: black;}
#rowView { height: 80%; width: 100%; background-color: black;}

#rowNav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
#rowView {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    color: #C8C8C8;
}
#rowFoot {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 10px;
    color: #C8C8C8;
}
/* NAVBAR, MAINVIEW, & FOOTER CSS END */
/*******************************************************************/

/*******************************************************************/
/* CSS START */

/* NAV CSS */
.navBTN {
    width: 20%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    color: #C8C8C8;
    cursor: pointer;
}
.navBTN:hover {
    color: red;
    opacity: 55%;
}
#navlogo {
    width: 100%;
    height: 100%;
}

.dataSection {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    height:100%;
    width: 100%;
    color:#C8C8C8;
}


/* FORM CSS*/
form {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    height: 60%;
    width: 75%;
}
/* Style inputs with type="text" and password */
input[type=text], input[type=password] {
    width: 70%; /* 70% width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}
/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: red;
    color:#C8C8C8;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    opacity: 55%;
}

/* CSS END */
/*******************************************************************/