html,
body {
    padding: 0px;
    margin: 0;
}

body {
    /* Location of the image */
    /*    background-image: url(../images/henzo-bg.png);*/
    /* Background image is centered vertically and horizontally at all times */
    /*    background-position: center center;*/
    /* Background image doesn't tile */
    /*    background-repeat: no-repeat;*/
    /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
    /*    background-attachment: fixed;*/
    /* This is what makes the background image rescale based
     on the container's size */
    /*    background-size: cover;*/
    /* Set a background color that will be displayed
     while the background image is loading */
    /*background-color: #eeeeee;*/
    background-color: #222222;
    overflow: hidden;
    /*    font-family: 'Cabin Sketch', cursive, sans-serif;*/
    /*    font-family: 'Reenie Beanie', cursive;*/
    /*    font-family: 'Indie Flower', cursive;*/
    font-family: 'Source Code Pro', monospace;
    font-size: 18px;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    body {
        /* The file size of this background image is 93% smaller
       to improve page load speed on mobile internet connections */
        /*        background-image: url(../images/m-background.jpg);*/
        /*font-family: 'Barlow', sans-serif;*/
        letter-spacing: 0.05em;
        font-size: 12px;
    }
    #content {
        width: 320px !important;
    }
}


/* ----------------------- */

/* ------ CONTAINER ------ */

/* ----------------------- */

#splash {
    position: absolute;
    height: 100vh;
    width: 100%;
        border: 5px solid red;
    margin: 0;
}

#container {
    height: 100vh;
    width: 100%;
    /*    border: 5px solid red;*/
    margin: 0;
}

#content {
    width: 640px;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    padding: 30px;
    /*background-color: #f7f7f7;*/
    background-color: #444;
    border-radius: 4px;
}

#content div {
    padding-bottom: 5px;
}

.tabbed {
    margin-left: 30px;
}

#nameID,
#msgID {
    color: #08ae00;
}



/* ----------------------------- */

/* ------- ANIMATED ARW -------- */

/* ----------------------------- */

#arrow {
  animation: slide1 1s ease-in-out infinite;
  margin-left: 9px;
    position: absolute;
}

@keyframes slide1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, 0);
  }
}



/* ----------------------------- */

/* ------- MODAL STYLES -------- */

/* ----------------------------- */


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(1, 1, 1);
    /* Fallback color */
    background-color: rgba(1, 1, 1, 1);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
/*    background-color: #555;*/
    color: #000000;
    margin: auto;
    padding: 30px;
    width: 80%;
    text-align: center;
}

#video {
    box-shadow: 1px 1px 17px #000;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}


/* The Close Button */

.close {
    color: #aaaaaa;
    float: right;
    font-size: 54px;
    margin-top: -30px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


/* ----------------------------- */


/* -------- TEXT STYLES -------- */


/* ----------------------------- */

h1 {
    font-size: 6.75em;
    font-weight: 100;
    line-height: 1.0;
    margin-bottom: 0.12em;
    text-align: center;
}

p {
    font-size: 1.25em;
    /*16px*/
    font-weight: 200;
    /*400*/
    line-height: 1.5;
    margin-bottom: 1.8em;
}

a:link {
    color: #dbb400;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:visited {
    color: #000000;
    /*color: #ff0000;*/
}

a:hover {
    color: #08ae00;
    text-decoration: none;
}

a:active {
    color: #dbb400;
}