html {
    font-size: 14px;
  }
  
  @media (min-width: 768px) {
    html {
      font-size: 16px;
    }
  }
  
  html {
    position: relative;
    min-height: 100%;
  }
  
  body {
    margin-bottom: 60px;
  }

  footer {
    padding:20px;
    background-color: #d1d1d1;

  }
  
  .navlinks{
    font-size:18px;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    padding:10px;
    text-decoration: none;
  }

  .navcontainer {
    width: 100%;
    height: 100%;
    padding:5px;
    background-color: #d1d1d1;

  }
  

  
  .buttonFLASH {
      background-color: #004A7F;
      width: 100% -webkit-border-radius: 10px;
      border-radius: 10px;
      border: none;
      color: #FFFFFF;
      cursor: pointer;
      display: inline-block;
      font-family: Arial;
      font-size: 24px;
      padding: 5px 10px;
      text-align: center;
      text-decoration: none;
      -webkit-animation: glowing 1500ms infinite;
      -moz-animation: glowing 1500ms infinite;
      -o-animation: glowing 1500ms infinite;
      animation: glowing 1500ms infinite;
  }
  
  
  
  @-webkit-keyframes glowing {
  
      0% {
          background-color: #B20000;
          -webkit-box-shadow: 0 0 3px #B20000;
      }
  
  
  
      50% {
          background-color: #FF0000;
          -webkit-box-shadow: 0 0 40px #FF0000;
      }
  
  
  
      100% {
          background-color: #B20000;
          -webkit-box-shadow: 0 0 3px #B20000;
      }
  }
  
  
  
  @-moz-keyframes glowing {
  
      0% {
          background-color: #B20000;
          -moz-box-shadow: 0 0 3px #B20000;
      }
  
  
  
      50% {
          background-color: #FF0000;
          -moz-box-shadow: 0 0 40px #FF0000;
      }
  
  
  
      100% {
          background-color: #B20000;
          -moz-box-shadow: 0 0 3px #B20000;
      }
  }
  
  
  
  @-o-keyframes glowing {
  
      0% {
          background-color: #B20000;
          box-shadow: 0 0 3px #B20000;
      }
  
  
  
      50% {
          background-color: #FF0000;
          box-shadow: 0 0 40px #FF0000;
      }
  
  
  
      100% {
          background-color: #B20000;
          box-shadow: 0 0 3px #B20000;
      }
  }
  
  
  
  @keyframes glowing {
  
      0% {
          background-color: #B20000;
          box-shadow: 0 0 3px #B20000;
      }
  
  
  
      50% {
          background-color: #FF0000;
          box-shadow: 0 0 40px #FF0000;
      }
  
  
  
      100% {
          background-color: #B20000;
          box-shadow: 0 0 3px #B20000;
      }
  }
  
  
  

  
  

  
  .box-bounds {
      padding: 10px;
      position: absolute;
  }
  
  .box {
      width: 50px;
      height: 50px;
      border: 1px #000 solid;
      right: 200px;
      background: red;
      transition: 0.5s;
  }
  
  
  
  .buttonhover {
      font-size:16px;
      background-color:#d1d1d1;
      color:white;
      padding:5px;
  border:none;
  
  }
  
  .buttonhover:hover {
      font-size:16px;
      padding:5px;
  
      background-color:green;
  color:white;
  border:none;
  
  }
  
  
  .buttonhover .cancel {
      display: none;
    }
    
    .buttonhover:hover .submit {
      display: none;
    }
    
    .buttonhover:hover .cancel {
      display: inline;
    }




     /* Dropdown Button */
.dropbtn {
    background-color: #04AA6D;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    white-space: nowrap;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;} 


  