BODY {
        font-family: verdana;
    }

    .shrink {
        width: 87%;
        border: thin red groove;
        padding: 13px;
        border-radius: 15px;
    }

    h3 {
        background: hsla(215, 100%, 32%, 0.38);
        color: white;
        text-decoration: none;
        padding-left: 10px;
        border-radius: 5px;
        width: 72%;
    }

    h3 a {
        background: red;
        color: white;
        text-decoration: none;
    }

    .smallButtonGrey {
        background: hsla(0, 9%, 21%, 1);
        color: white;
        padding: 4px;
        border-radius: 5px;
        text-decoration: none;

    }

    .myButton {
        box-shadow: inset 0px 1px 3px 0px #91b8b3;
        background: linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
        background-color: #768d87;
        border-radius: 5px;
        border: 1px solid #566963;
        display: inline-block;
        cursor: pointer;
        color: #ffffff;
        font-family: Verdana;
        font-size: 14px;
        font-weight: bold;
        padding: 5px 8px;
        text-decoration: none;
        text-shadow: 0px -1px 0px #2b665e;
    }

    .myButton:hover {
        background: linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
        background-color: #6c7c7c;
    }

    .myButton:active {
        position: relative;
        top: 1px;
    }


    .videoDIV {
        background: hsla(37, 47%, 80%, 1);
        padding: 7px;
        border-radius: 5px;
        display: block;
    }

    video {
        aspect-ratio: 16 / 9;
    }

    .video-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
    }

    .video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .navbar-btn {
        cursor: pointer;
        background: hsla(206, 100%, 39%, 1);
        color: white;
        border-radius: 5px;
        padding: 2px;
    }

    .linkBTNS {
        cursor: pointer;
        background: hsla(159, 67%, 55%, 1);
        color: white;
        text-decoration:none;
        border-radius: 5px;
        padding: 2px;  
    }
	
	textarea {
  color: #444;
  padding: 5px;
}

/* TEXTAREA AUTO RESIZE STYLES BEGIN */

/* The .hiddendiv styles are added with JS.
   You can remove the JS lines and use CSS instead
.hiddendiv {
  display: none;
  white-space: pre-wrap;
  word-wrap: break-word;
}*/

/* the styles for 'txta' are applied to both the textarea and the hidden clone */
/* these must be the same for both */
.txta {
  width: 100%;
  max-width: 500px;
  min-height: 100px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  overflow: hidden;
  line-height: 1.4;
}
/* TEXTAREA AUTO RESIZE STYLES END */
textarea.txt {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    width: 80%;
    height: auto;
}

.youYellow {background:yellow;}