/* 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-content:center;
}
.leftAlign { justify-content: flex-start; }
.rightAlign{ justify-content: flex-end; }
/*******************************************************************/
/* 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 { height: 10%; width: 100%; }
#rowView { height: 90%; width: 100%; }
/* NAVBAR, MAINVIEW, & FOOTER CSS END */
/*******************************************************************/

#usrform {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    width: 50%;
    height: 20%;
    padding-left:25%;
    text-align:center;
}

#usrform textarea{
    text-align:center;
}

#bubbleCTR {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: center;
    width: 100%;
    height: 80%;
}


#mainContent {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    height: 100%;
    width: 100%;
}



.box {
    width: 300px;
    margin: 50px auto;
    background: #00bfb6;
    padding: 20px;
    text-align: center;
    font-weight: 900;
    color: #fff;
    font-family: arial;
    position:relative;
  }


  .sb1:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid #00bfb6;
    border-right: 10px solid transparent;
    border-top: 10px solid #00bfb6;
    border-bottom: 10px solid transparent;
    right: -20px;
    top: 6px;
  }